Release v11 (#529)
This commit is contained in:
parent
db2a00f456
commit
41eed3f6a1
6 changed files with 269 additions and 261 deletions
497
Cargo.lock
generated
497
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
15
Cargo.toml
15
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "atuin"
|
||||
version = "0.10.0"
|
||||
version = "11.0.0"
|
||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.59"
|
||||
|
@ -44,9 +44,9 @@ sync = ["atuin-client/sync"]
|
|||
server = ["atuin-server", "tracing-subscriber"]
|
||||
|
||||
[dependencies]
|
||||
atuin-server = { path = "atuin-server", version = "0.10.0", optional = true }
|
||||
atuin-client = { path = "atuin-client", version = "0.10.0", optional = true, default-features = false }
|
||||
atuin-common = { path = "atuin-common", version = "0.10.0" }
|
||||
atuin-server = { path = "atuin-server", version = "11.0.0", optional = true }
|
||||
atuin-client = { path = "atuin-client", version = "11.0.0", optional = true, default-features = false }
|
||||
atuin-common = { path = "atuin-common", version = "11.0.0" }
|
||||
|
||||
log = "0.4"
|
||||
pretty_env_logger = "0.4"
|
||||
|
@ -75,10 +75,5 @@ rpassword = "6.0"
|
|||
[dependencies.tracing-subscriber]
|
||||
version = "0.3"
|
||||
default-features = false
|
||||
features = [
|
||||
"ansi",
|
||||
"fmt",
|
||||
"registry",
|
||||
"env-filter",
|
||||
]
|
||||
features = ["ansi", "fmt", "registry", "env-filter"]
|
||||
optional = true
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "atuin-client"
|
||||
version = "0.10.0"
|
||||
version = "11.0.0"
|
||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
|
@ -23,7 +23,7 @@ sync = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "0.10.0" }
|
||||
atuin-common = { path = "../atuin-common", version = "11.0.0" }
|
||||
|
||||
log = "0.4"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
|
|
|
@ -75,7 +75,7 @@ async fn sync_download(
|
|||
// timestamps
|
||||
if page_last == last_timestamp {
|
||||
last_timestamp = Utc.timestamp_millis(0);
|
||||
last_sync = last_sync - chrono::Duration::hours(1);
|
||||
last_sync -= chrono::Duration::hours(1);
|
||||
} else {
|
||||
last_timestamp = page_last;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "atuin-common"
|
||||
version = "0.10.0"
|
||||
version = "11.0.0"
|
||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "atuin-server"
|
||||
version = "0.10.0"
|
||||
version = "11.0.0"
|
||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
|
@ -9,7 +9,7 @@ homepage = "https://atuin.sh"
|
|||
repository = "https://github.com/ellie/atuin"
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "0.10.0" }
|
||||
atuin-common = { path = "../atuin-common", version = "11.0.0" }
|
||||
|
||||
tracing = "0.1"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
|
@ -23,7 +23,11 @@ sodiumoxide = "0.2.6"
|
|||
base64 = "0.13.0"
|
||||
rand = "0.8.4"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "chrono", "postgres" ] }
|
||||
sqlx = { version = "0.5", features = [
|
||||
"runtime-tokio-rustls",
|
||||
"chrono",
|
||||
"postgres",
|
||||
] }
|
||||
async-trait = "0.1.49"
|
||||
axum = "0.5"
|
||||
http = "0.2"
|
||||
|
|
Loading…
Reference in a new issue