1
0
Fork 0
mirror of https://github.com/zhaofengli/attic.git synced 2025-03-16 21:38:21 +00:00

Update deps

This commit is contained in:
Zhaofeng Li 2023-05-28 15:21:59 -06:00
parent b0fd84299c
commit 6489d775ae
5 changed files with 520 additions and 386 deletions

784
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -5,31 +5,31 @@ edition = "2021"
publish = false publish = false
[dependencies] [dependencies]
async-stream = { version = "0.3.4", optional = true } async-stream = { version = "0.3.5", optional = true }
base64 = "0.21.0" base64 = "0.21.2"
bytes = "1.4.0" bytes = "1.4.0"
displaydoc = "0.2.3" displaydoc = "0.2.4"
digest = "0.10.6" digest = "0.10.7"
ed25519-compact = "2.0.4" ed25519-compact = "2.0.4"
futures = "0.3.26" futures = "0.3.28"
hex = "0.4.3" hex = "0.4.3"
lazy_static = "1.4.0" lazy_static = "1.4.0"
log = "0.4.17" log = "0.4.18"
nix-base32 = { git = "https://github.com/zhaofengli/nix-base32.git", rev = "b850c6e9273d1c39bd93abb704a53345f5be92eb" } nix-base32 = { git = "https://github.com/zhaofengli/nix-base32.git", rev = "b850c6e9273d1c39bd93abb704a53345f5be92eb" }
regex = "1.7.1" regex = "1.8.3"
serde = { version = "1.0.152", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
serde_yaml = "0.9.18" serde_yaml = "0.9.21"
serde_with = "2.2.0" serde_with = "2.3.3"
sha2 = "0.10.6" sha2 = "0.10.6"
tempfile = "3" tempfile = "3"
wildmatch = "2.1.1" wildmatch = "2.1.1"
xdg = "2.4.1" xdg = "2.5.0"
# Native libnixstore bindings. # Native libnixstore bindings.
cxx = { version = "1.0", optional = true } cxx = { version = "1.0", optional = true }
[dependencies.tokio] [dependencies.tokio]
version = "1.26.0" version = "1.28.2"
optional = true optional = true
features = [ features = [
"fs", "fs",
@ -39,13 +39,13 @@ features = [
] ]
[dev-dependencies] [dev-dependencies]
serde_json = "1.0.93" serde_json = "1.0.96"
tokio-test = "0.4.2" tokio-test = "0.4.2"
[build-dependencies] [build-dependencies]
bindgen = { version = "0.64.0", optional = true } bindgen = { version = "0.64.0", optional = true }
cxx-build = { version = "1.0", optional = true } cxx-build = { version = "1.0", optional = true }
pkg-config = "0.3.26" pkg-config = "0.3.27"
[features] [features]
default = [ "nix_store", "tokio" ] default = [ "nix_store", "tokio" ]

View file

@ -11,31 +11,31 @@ path = "src/main.rs"
[dependencies] [dependencies]
attic = { path = "../attic" } attic = { path = "../attic" }
anyhow = "1.0.69" anyhow = "1.0.71"
async-channel = "1.8.0" async-channel = "1.8.0"
bytes = "1.4.0" bytes = "1.4.0"
clap = { version = "4.1", features = ["derive"] } clap = { version = "4.3", features = ["derive"] }
clap_complete = "4.1.4" clap_complete = "4.3.0"
const_format = "0.2.30" const_format = "0.2.30"
dialoguer = "0.10.3" dialoguer = "0.10.4"
displaydoc = "0.2.3" displaydoc = "0.2.4"
enum-as-inner = "0.5.1" enum-as-inner = "0.5.2"
futures = "0.3.26" futures = "0.3.28"
humantime = "2.1.0" humantime = "2.1.0"
indicatif = "0.17.3" indicatif = "0.17.3"
lazy_static = "1.4.0" lazy_static = "1.4.0"
notify = { version = "5.1.0", default-features = false, features = ["macos_kqueue"] } notify = { version = "5.2.0", default-features = false, features = ["macos_kqueue"] }
regex = "1.7.1" regex = "1.8.3"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] } reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
serde = { version = "1.0.152", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.93" serde_json = "1.0.96"
toml = "0.7.2" toml = "0.7.4"
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = "0.3.16" tracing-subscriber = "0.3.17"
xdg = "2.4.1" xdg = "2.5.0"
[dependencies.tokio] [dependencies.tokio]
version = "1.26.0" version = "1.28.2"
features = [ features = [
"fs", "fs",
"io-util", "io-util",

View file

@ -22,44 +22,44 @@ doc = false
attic = { path = "../attic", default-features = false, features = [ "tokio" ] } attic = { path = "../attic", default-features = false, features = [ "tokio" ] }
attic-token = { path = "../token" } attic-token = { path = "../token" }
anyhow = "1.0.69" anyhow = "1.0.71"
async-stream = "0.3.4" async-stream = "0.3.5"
async-trait = "0.1.65" async-trait = "0.1.68"
aws-config = "0.54.1" aws-config = "0.54.1"
aws-sdk-s3 = "0.24.0" aws-sdk-s3 = "0.24.0"
axum = "0.6.10" axum = "0.6.18"
axum-macros = "0.3.5" axum-macros = "0.3.7"
base64 = "0.21.0" base64 = "0.21.2"
bytes = "1.4.0" bytes = "1.4.0"
chrono = "0.4.23" chrono = "0.4.24"
clap = { version = "4.1", features = ["derive"] } clap = { version = "4.3", features = ["derive"] }
derivative = "2.2.0" derivative = "2.2.0"
digest = "0.10.6" digest = "0.10.7"
displaydoc = "0.2.3" displaydoc = "0.2.4"
enum-as-inner = "0.5.1" enum-as-inner = "0.5.2"
fastcdc = "3.0.1" fastcdc = "3.0.3"
futures = "0.3.26" futures = "0.3.28"
hex = "0.4.3" hex = "0.4.3"
humantime = "2.1.0" humantime = "2.1.0"
humantime-serde = "1.1.1" humantime-serde = "1.1.1"
itoa = "=1.0.5" itoa = "=1.0.5"
maybe-owned = "0.3.4" maybe-owned = "0.3.4"
rand = "0.8.5" rand = "0.8.5"
regex = "1.7.1" regex = "1.8.3"
ryu = "1.0.13" ryu = "1.0.13"
sha2 = { version = "0.10.6", features = ["asm"] } sha2 = { version = "0.10.6", features = ["asm"] }
serde = "1.0.152" serde = "1.0.163"
serde_json = "1.0.93" serde_json = "1.0.96"
serde_with = "2.2.0" serde_with = "2.3.3"
tokio-util = { version = "0.7.7", features = [ "io" ] } tokio-util = { version = "0.7.8", features = [ "io" ] }
toml = "0.7.2" toml = "0.7.4"
tower-http = { version = "0.4.0", features = [ "catch-panic", "trace" ] } tower-http = { version = "0.4.0", features = [ "catch-panic", "trace" ] }
tracing = "0.1.37" tracing = "0.1.37"
tracing-error = "0.2.0" tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.16", features = [ "json" ] } tracing-subscriber = { version = "0.3.17", features = [ "json" ] }
uuid = { version = "1.3.0", features = ["v4"] } uuid = { version = "1.3.3", features = ["v4"] }
console-subscriber = "0.1.8" console-subscriber = "0.1.9"
xdg = "2.4.1" xdg = "2.5.0"
[dependencies.async-compression] [dependencies.async-compression]
version = "0.3.15" version = "0.3.15"
@ -94,7 +94,7 @@ branch = "attic"
version = "0.10.5" version = "0.10.5"
[dependencies.tokio] [dependencies.tokio]
version = "1.26.0" version = "1.28.2"
features = [ features = [
"fs", "fs",
"io-util", "io-util",

View file

@ -8,12 +8,12 @@ edition = "2021"
[dependencies] [dependencies]
attic = { path = "../attic", default-features = false } attic = { path = "../attic", default-features = false }
base64 = "0.21.0" base64 = "0.21.2"
chrono = "0.4.23" chrono = "0.4.24"
displaydoc = "0.2.3" displaydoc = "0.2.4"
jwt-simple = "0.11.4" jwt-simple = "0.11.5"
lazy_static = "1.4.0" lazy_static = "1.4.0"
regex = "1.7.1" regex = "1.8.3"
serde = "1.0.152" serde = "1.0.163"
serde_with = "2.2.0" serde_with = "2.3.3"
tracing = "0.1.37" tracing = "0.1.37"