Update deps

This commit is contained in:
Zhaofeng Li 2023-03-05 11:05:11 -07:00
parent dbcf98b4e4
commit 18ca2cf29a
5 changed files with 488 additions and 425 deletions

823
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -5,21 +5,21 @@ edition = "2021"
publish = false publish = false
[dependencies] [dependencies]
async-stream = { version = "0.3.3", optional = true } async-stream = { version = "0.3.4", optional = true }
base64 = "0.20.0" base64 = "0.20.0"
bytes = "1.3.0" bytes = "1.4.0"
displaydoc = "0.2.3" displaydoc = "0.2.3"
digest = "0.10.6" digest = "0.10.6"
ed25519-compact = "2.0.4" ed25519-compact = "2.0.4"
futures = "0.3.25" futures = "0.3.26"
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.17"
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.0" regex = "1.7.1"
serde = { version = "1.0.151", features = ["derive"] } serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.16" serde_yaml = "0.9.18"
serde_with = "2.1.0" serde_with = "2.2.0"
sha2 = "0.10.6" sha2 = "0.10.6"
tempfile = "3" tempfile = "3"
wildmatch = "2.1.1" wildmatch = "2.1.1"
@ -29,7 +29,7 @@ xdg = "2.4.1"
cxx = { version = "1.0", optional = true } cxx = { version = "1.0", optional = true }
[dependencies.tokio] [dependencies.tokio]
version = "1.23.0" version = "1.26.0"
optional = true optional = true
features = [ features = [
"fs", "fs",
@ -39,7 +39,7 @@ features = [
] ]
[dev-dependencies] [dev-dependencies]
serde_json = "1.0.91" serde_json = "1.0.93"
tokio-test = "0.4.2" tokio-test = "0.4.2"
[build-dependencies] [build-dependencies]

View file

@ -11,31 +11,31 @@ path = "src/main.rs"
[dependencies] [dependencies]
attic = { path = "../attic" } attic = { path = "../attic" }
anyhow = "1.0.68" anyhow = "1.0.69"
async-channel = "1.8.0" async-channel = "1.8.0"
bytes = "1.3.0" bytes = "1.4.0"
clap = { version = "4.0", features = ["derive"] } clap = { version = "4.1", features = ["derive"] }
clap_complete = "4.0.2" clap_complete = "4.1.4"
const_format = "0.2.30" const_format = "0.2.30"
dialoguer = "0.10.2" dialoguer = "0.10.3"
displaydoc = "0.2.3" displaydoc = "0.2.3"
enum-as-inner = "0.5.1" enum-as-inner = "0.5.1"
futures = "0.3.25" futures = "0.3.26"
humantime = "2.1.0" humantime = "2.1.0"
indicatif = "0.17.2" 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.1.0", default-features = false, features = ["macos_kqueue"] }
regex = "1.7.0" regex = "1.7.1"
reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] } reqwest = { version = "0.11.14", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
serde = { version = "1.0.151", features = ["derive"] } serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91" serde_json = "1.0.93"
toml = "0.5.10" toml = "0.5.11"
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = "0.3.16" tracing-subscriber = "0.3.16"
xdg = "2.4.1" xdg = "2.4.1"
[dependencies.tokio] [dependencies.tokio]
version = "1.23.0" version = "1.26.0"
features = [ features = [
"fs", "fs",
"io-util", "io-util",

View file

@ -22,42 +22,42 @@ 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.68" anyhow = "1.0.69"
async-stream = "0.3.3" async-stream = "0.3.4"
async-trait = "0.1.60" async-trait = "0.1.65"
aws-config = "0.52.0" aws-config = "0.52.0"
aws-sdk-s3 = "0.22.0" aws-sdk-s3 = "0.22.0"
axum = "0.6.1" axum = "0.6.10"
axum-macros = "0.3.0" axum-macros = "0.3.5"
base64 = "0.20.0" base64 = "0.20.0"
bytes = "1.3.0" bytes = "1.4.0"
chrono = "0.4.23" chrono = "0.4.23"
clap = { version = "4.0", features = ["derive"] } clap = { version = "4.1", features = ["derive"] }
derivative = "2.2.0" derivative = "2.2.0"
digest = "0.10.6" digest = "0.10.6"
displaydoc = "0.2.3" displaydoc = "0.2.3"
enum-as-inner = "0.5.1" enum-as-inner = "0.5.1"
fastcdc = "1.0.7" fastcdc = "1.0.8"
futures = "0.3.25" futures = "0.3.26"
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.0" regex = "1.7.1"
ryu = "1.0.12" ryu = "1.0.13"
sha2 = { version = "0.10.6", features = ["asm"] } sha2 = { version = "0.10.6", features = ["asm"] }
serde = "1.0.151" serde = "1.0.152"
serde_json = "1.0.91" serde_json = "1.0.93"
serde_with = "2.1.0" serde_with = "2.2.0"
tokio-util = { version = "0.7.4", features = [ "io" ] } tokio-util = { version = "0.7.7", features = [ "io" ] }
toml = "0.5.10" toml = "0.5.11"
tower-http = { version = "0.3.5", features = [ "catch-panic", "trace" ] } tower-http = { version = "0.3.5", 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.16", features = [ "json" ] }
uuid = { version = "1.2.2", features = ["v4"] } uuid = { version = "1.3.0", features = ["v4"] }
console-subscriber = "0.1.8" console-subscriber = "0.1.8"
xdg = "2.4.1" xdg = "2.4.1"
@ -94,7 +94,7 @@ branch = "attic"
version = "0.10.5" version = "0.10.5"
[dependencies.tokio] [dependencies.tokio]
version = "1.23.0" version = "1.26.0"
features = [ features = [
"fs", "fs",
"io-util", "io-util",

View file

@ -11,9 +11,9 @@ attic = { path = "../attic", default-features = false }
base64 = "0.20.0" base64 = "0.20.0"
chrono = "0.4.23" chrono = "0.4.23"
displaydoc = "0.2.3" displaydoc = "0.2.3"
jwt-simple = "0.11.2" jwt-simple = "0.11.4"
lazy_static = "1.4.0" lazy_static = "1.4.0"
regex = "1.7.0" regex = "1.7.1"
serde = "1.0.151" serde = "1.0.152"
serde_with = "2.1.0" serde_with = "2.2.0"
tracing = "0.1.37" tracing = "0.1.37"