parent
28021566e8
commit
f38ef12581
6 changed files with 70 additions and 59 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -79,7 +79,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-client",
|
"atuin-client",
|
||||||
|
@ -113,7 +113,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-client"
|
name = "atuin-client"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
|
@ -150,7 +150,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-common"
|
name = "atuin-common"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -159,7 +159,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-server"
|
name = "atuin-server"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.59"
|
rust-version = "1.59"
|
||||||
|
@ -44,9 +44,9 @@ sync = ["atuin-client/sync"]
|
||||||
server = ["atuin-server", "tracing-subscriber"]
|
server = ["atuin-server", "tracing-subscriber"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-server = { path = "atuin-server", version = "11.0.0", optional = true }
|
atuin-server = { path = "atuin-server", version = "12.0.0", optional = true }
|
||||||
atuin-client = { path = "atuin-client", version = "11.0.0", optional = true, default-features = false }
|
atuin-client = { path = "atuin-client", version = "12.0.0", optional = true, default-features = false }
|
||||||
atuin-common = { path = "atuin-common", version = "11.0.0" }
|
atuin-common = { path = "atuin-common", version = "12.0.0" }
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.4"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin-client"
|
name = "atuin-client"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -23,7 +23,7 @@ sync = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "11.0.0" }
|
atuin-common = { path = "../atuin-common", version = "12.0.0" }
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4", features = ["serde"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin-common"
|
name = "atuin-common"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin-server"
|
name = "atuin-server"
|
||||||
version = "11.0.0"
|
version = "12.0.0"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -9,7 +9,7 @@ homepage = "https://atuin.sh"
|
||||||
repository = "https://github.com/ellie/atuin"
|
repository = "https://github.com/ellie/atuin"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "11.0.0" }
|
atuin-common = { path = "../atuin-common", version = "12.0.0" }
|
||||||
|
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4", features = ["serde"] }
|
||||||
|
|
|
@ -1,53 +1,64 @@
|
||||||
const CONTRIBUTORS: &str = r#"
|
const CONTRIBUTORS: &str = r#"
|
||||||
Ellie Huxtable (@ellie)
|
|
||||||
ConradLudate (@conradludgate)
|
|
||||||
Orhun Parmaksız (@orhun)
|
|
||||||
Jamie Quigley (@Sciencentistguy)
|
|
||||||
Yuvi Panda (@yuvipanda)
|
|
||||||
Jakub Jirutka (@jirutka)
|
|
||||||
Frank Hamand (@frankh)
|
|
||||||
Jannik (@mozzieongit)
|
|
||||||
Sandro (@SuperSandro2000)
|
|
||||||
bl-ue (@bl-ue)
|
|
||||||
Ian Smith (@ismith)
|
|
||||||
Michael Bianco (@iloveitaly)
|
|
||||||
Mat Jones (@mrjones2014)
|
|
||||||
Mark Wotton (@mwotton)
|
|
||||||
Jakob Schrettenbrunner (@schrej)
|
|
||||||
Jakub Panek (@panekj)
|
|
||||||
ZhiHong Li (@OnePieceJoker)
|
|
||||||
Satyarth Sampath (@notsatyarth)
|
|
||||||
Noyzen (@noyez)
|
|
||||||
Jerome Ducret (@DucretJe)
|
|
||||||
c-14 (@c-14)
|
|
||||||
avinassh (@avinassh)
|
avinassh (@avinassh)
|
||||||
Will Fancher (@ElvishJerricco)
|
|
||||||
Omer Katz (@thedrow)
|
|
||||||
Manel Vilar (@manelvf)
|
|
||||||
Simon Elsbrock (@elsbrock)
|
|
||||||
Patrick Jackson (@patricksjackson)
|
|
||||||
Lucas Burns (@lmburns)
|
|
||||||
Patrick (@pmarschik)
|
|
||||||
Herby Gillot (@herbygillot)
|
|
||||||
Brad Robel-Forrest (@bradrf)
|
|
||||||
lchausmann (@lchausmann)
|
|
||||||
mundry (@mundry)
|
|
||||||
jean-santos (@jean-santos)
|
|
||||||
networkException (@networkException)
|
|
||||||
mb6ockatf (@mb6ockatf)
|
|
||||||
Luke Baker (@lukebaker)
|
|
||||||
Daniel (@daniel0611)
|
|
||||||
Ubiquitous Photon (@UbiquitousPhoton)
|
|
||||||
Sam Lanning (@s0)
|
|
||||||
b3nj5m1n (@b3nj5m1n)
|
b3nj5m1n (@b3nj5m1n)
|
||||||
Sam Edwards (@dotsam)
|
bl-ue (@bl-ue)
|
||||||
Ilkin Bayramli (@ibayramli)
|
Benjamin Vergnaud (@bvergnaud)
|
||||||
Klas Mellbourn (@Mellbourn)
|
Brad Robel-Forrest (@bradrf)
|
||||||
morguldir (@morguldir)
|
Bruce Huang (@helbing)
|
||||||
Martin Indra (@Indy2222)
|
c-14 (@c-14)
|
||||||
Michael Mior (@michaelmior)
|
ConradLudate (@conradludgate)
|
||||||
CosmicHorror (@LovecraftianHorror)
|
CosmicHorror (@LovecraftianHorror)
|
||||||
Laurent le Beau-Martin (@laurentlbm)"#;
|
Daniel (@daniel0611)
|
||||||
|
DanielAtCosmicDNA (@DanielAtCosmicDNA)
|
||||||
|
Ellie Huxtable (@ellie)
|
||||||
|
Eric Crosson (@EricCrosson)
|
||||||
|
Frank Hamand (@frankh)
|
||||||
|
Herby Gillot (@herbygillot)
|
||||||
|
Ian Smith (@ismith)
|
||||||
|
Ilkin Bayramli (@ibayramli)
|
||||||
|
Jakob Schrettenbrunner (@schrej)
|
||||||
|
Jakub Jirutka (@jirutka)
|
||||||
|
Jakub Panek (@panekj)
|
||||||
|
Jamie Quigley (@Sciencentistguy)
|
||||||
|
Jannik (@mozzieongit)
|
||||||
|
jean-santos (@jean-santos)
|
||||||
|
Jerome Ducret (@DucretJe)
|
||||||
|
Klas Mellbourn (@Mellbourn)
|
||||||
|
Laurent le Beau-Martin (@laurentlbm)
|
||||||
|
lchausmann (@lchausmann)
|
||||||
|
Lucas Burns (@lmburns)
|
||||||
|
Lucy (@Absolucy)
|
||||||
|
Luke Baker (@lukebaker)
|
||||||
|
Manel Vilar (@manelvf)
|
||||||
|
Mark Wotton (@mwotton)
|
||||||
|
Martin Indra (@Indy2222)
|
||||||
|
Mat Jones (@mrjones2014)
|
||||||
|
mb6ockatf (@mb6ockatf)
|
||||||
|
Michael Bianco (@iloveitaly)
|
||||||
|
Michael Mior (@michaelmior)
|
||||||
|
morguldir (@morguldir)
|
||||||
|
mundry (@mundry)
|
||||||
|
networkException (@networkException)
|
||||||
|
Noyzen (@noyez)
|
||||||
|
Omer Katz (@thedrow)
|
||||||
|
Orhun Parmaksız (@orhun)
|
||||||
|
Patrick (@pmarschik)
|
||||||
|
Patrick Jackson (@patricksjackson)
|
||||||
|
Plamen Dimitrov (@pevogam)
|
||||||
|
Sam Edwards (@dotsam)
|
||||||
|
Sam Lanning (@s0)
|
||||||
|
Sandro (@SuperSandro2000)
|
||||||
|
Satyarth Sampath (@notsatyarth)
|
||||||
|
Simon Elsbrock (@elsbrock)
|
||||||
|
TymanWasTaken (@TymanWasTaken)
|
||||||
|
Ubiquitous Photon (@UbiquitousPhoton)
|
||||||
|
Violet (@shreve)
|
||||||
|
Will Fancher (@ElvishJerricco)
|
||||||
|
wpbrz (@wpbrz)
|
||||||
|
xfzv (@xfzv)
|
||||||
|
Yuvi Panda (@yuvipanda)
|
||||||
|
ZhiHong Li (@OnePieceJoker)
|
||||||
|
"#;
|
||||||
|
|
||||||
pub fn run() {
|
pub fn run() {
|
||||||
println!("{}", CONTRIBUTORS);
|
println!("{}", CONTRIBUTORS);
|
||||||
|
|
Loading…
Reference in a new issue