mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-14 11:57:30 +00:00
Update deps
This commit is contained in:
parent
dbcf98b4e4
commit
18ca2cf29a
5 changed files with 488 additions and 425 deletions
823
Cargo.lock
generated
823
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -5,21 +5,21 @@ edition = "2021"
|
|||
publish = false
|
||||
|
||||
[dependencies]
|
||||
async-stream = { version = "0.3.3", optional = true }
|
||||
async-stream = { version = "0.3.4", optional = true }
|
||||
base64 = "0.20.0"
|
||||
bytes = "1.3.0"
|
||||
bytes = "1.4.0"
|
||||
displaydoc = "0.2.3"
|
||||
digest = "0.10.6"
|
||||
ed25519-compact = "2.0.4"
|
||||
futures = "0.3.25"
|
||||
futures = "0.3.26"
|
||||
hex = "0.4.3"
|
||||
lazy_static = "1.4.0"
|
||||
log = "0.4.17"
|
||||
nix-base32 = { git = "https://github.com/zhaofengli/nix-base32.git", rev = "b850c6e9273d1c39bd93abb704a53345f5be92eb" }
|
||||
regex = "1.7.0"
|
||||
serde = { version = "1.0.151", features = ["derive"] }
|
||||
serde_yaml = "0.9.16"
|
||||
serde_with = "2.1.0"
|
||||
regex = "1.7.1"
|
||||
serde = { version = "1.0.152", features = ["derive"] }
|
||||
serde_yaml = "0.9.18"
|
||||
serde_with = "2.2.0"
|
||||
sha2 = "0.10.6"
|
||||
tempfile = "3"
|
||||
wildmatch = "2.1.1"
|
||||
|
@ -29,7 +29,7 @@ xdg = "2.4.1"
|
|||
cxx = { version = "1.0", optional = true }
|
||||
|
||||
[dependencies.tokio]
|
||||
version = "1.23.0"
|
||||
version = "1.26.0"
|
||||
optional = true
|
||||
features = [
|
||||
"fs",
|
||||
|
@ -39,7 +39,7 @@ features = [
|
|||
]
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.91"
|
||||
serde_json = "1.0.93"
|
||||
tokio-test = "0.4.2"
|
||||
|
||||
[build-dependencies]
|
||||
|
|
|
@ -11,31 +11,31 @@ path = "src/main.rs"
|
|||
[dependencies]
|
||||
attic = { path = "../attic" }
|
||||
|
||||
anyhow = "1.0.68"
|
||||
anyhow = "1.0.69"
|
||||
async-channel = "1.8.0"
|
||||
bytes = "1.3.0"
|
||||
clap = { version = "4.0", features = ["derive"] }
|
||||
clap_complete = "4.0.2"
|
||||
bytes = "1.4.0"
|
||||
clap = { version = "4.1", features = ["derive"] }
|
||||
clap_complete = "4.1.4"
|
||||
const_format = "0.2.30"
|
||||
dialoguer = "0.10.2"
|
||||
dialoguer = "0.10.3"
|
||||
displaydoc = "0.2.3"
|
||||
enum-as-inner = "0.5.1"
|
||||
futures = "0.3.25"
|
||||
futures = "0.3.26"
|
||||
humantime = "2.1.0"
|
||||
indicatif = "0.17.2"
|
||||
indicatif = "0.17.3"
|
||||
lazy_static = "1.4.0"
|
||||
notify = { version = "5.1.0", default-features = false, features = ["macos_kqueue"] }
|
||||
regex = "1.7.0"
|
||||
reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
|
||||
serde = { version = "1.0.151", features = ["derive"] }
|
||||
serde_json = "1.0.91"
|
||||
toml = "0.5.10"
|
||||
regex = "1.7.1"
|
||||
reqwest = { version = "0.11.14", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
|
||||
serde = { version = "1.0.152", features = ["derive"] }
|
||||
serde_json = "1.0.93"
|
||||
toml = "0.5.11"
|
||||
tracing = "0.1.37"
|
||||
tracing-subscriber = "0.3.16"
|
||||
xdg = "2.4.1"
|
||||
|
||||
[dependencies.tokio]
|
||||
version = "1.23.0"
|
||||
version = "1.26.0"
|
||||
features = [
|
||||
"fs",
|
||||
"io-util",
|
||||
|
|
|
@ -22,42 +22,42 @@ doc = false
|
|||
attic = { path = "../attic", default-features = false, features = [ "tokio" ] }
|
||||
attic-token = { path = "../token" }
|
||||
|
||||
anyhow = "1.0.68"
|
||||
async-stream = "0.3.3"
|
||||
async-trait = "0.1.60"
|
||||
anyhow = "1.0.69"
|
||||
async-stream = "0.3.4"
|
||||
async-trait = "0.1.65"
|
||||
aws-config = "0.52.0"
|
||||
aws-sdk-s3 = "0.22.0"
|
||||
axum = "0.6.1"
|
||||
axum-macros = "0.3.0"
|
||||
axum = "0.6.10"
|
||||
axum-macros = "0.3.5"
|
||||
base64 = "0.20.0"
|
||||
bytes = "1.3.0"
|
||||
bytes = "1.4.0"
|
||||
chrono = "0.4.23"
|
||||
clap = { version = "4.0", features = ["derive"] }
|
||||
clap = { version = "4.1", features = ["derive"] }
|
||||
derivative = "2.2.0"
|
||||
digest = "0.10.6"
|
||||
displaydoc = "0.2.3"
|
||||
enum-as-inner = "0.5.1"
|
||||
fastcdc = "1.0.7"
|
||||
futures = "0.3.25"
|
||||
fastcdc = "1.0.8"
|
||||
futures = "0.3.26"
|
||||
hex = "0.4.3"
|
||||
humantime = "2.1.0"
|
||||
humantime-serde = "1.1.1"
|
||||
itoa = "1.0.5"
|
||||
itoa = "=1.0.5"
|
||||
maybe-owned = "0.3.4"
|
||||
rand = "0.8.5"
|
||||
regex = "1.7.0"
|
||||
ryu = "1.0.12"
|
||||
regex = "1.7.1"
|
||||
ryu = "1.0.13"
|
||||
sha2 = { version = "0.10.6", features = ["asm"] }
|
||||
serde = "1.0.151"
|
||||
serde_json = "1.0.91"
|
||||
serde_with = "2.1.0"
|
||||
tokio-util = { version = "0.7.4", features = [ "io" ] }
|
||||
toml = "0.5.10"
|
||||
serde = "1.0.152"
|
||||
serde_json = "1.0.93"
|
||||
serde_with = "2.2.0"
|
||||
tokio-util = { version = "0.7.7", features = [ "io" ] }
|
||||
toml = "0.5.11"
|
||||
tower-http = { version = "0.3.5", features = [ "catch-panic", "trace" ] }
|
||||
tracing = "0.1.37"
|
||||
tracing-error = "0.2.0"
|
||||
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"
|
||||
xdg = "2.4.1"
|
||||
|
||||
|
@ -94,7 +94,7 @@ branch = "attic"
|
|||
version = "0.10.5"
|
||||
|
||||
[dependencies.tokio]
|
||||
version = "1.23.0"
|
||||
version = "1.26.0"
|
||||
features = [
|
||||
"fs",
|
||||
"io-util",
|
||||
|
|
|
@ -11,9 +11,9 @@ attic = { path = "../attic", default-features = false }
|
|||
base64 = "0.20.0"
|
||||
chrono = "0.4.23"
|
||||
displaydoc = "0.2.3"
|
||||
jwt-simple = "0.11.2"
|
||||
jwt-simple = "0.11.4"
|
||||
lazy_static = "1.4.0"
|
||||
regex = "1.7.0"
|
||||
serde = "1.0.151"
|
||||
serde_with = "2.1.0"
|
||||
regex = "1.7.1"
|
||||
serde = "1.0.152"
|
||||
serde_with = "2.2.0"
|
||||
tracing = "0.1.37"
|
||||
|
|
Loading…
Reference in a new issue