Update all dependencies
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
continuous-integration/drone/push Build encountered an error

This commit is contained in:
Kasper Juul Hermansen 2024-01-16 20:54:32 +00:00
parent c22a85b97d
commit 817986eafb
6 changed files with 289 additions and 230 deletions

493
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -15,10 +15,10 @@ members = [
]
[workspace.dependencies]
eyre = { version = "0.6.8" }
async-trait = "0.1.68"
tokio = { version = "1.28.1", features = ["full", "test-util"] }
tracing = { version = "0.1.37", features = ["log"] }
eyre = { version = "0.6.11" }
async-trait = "0.1.77"
tokio = { version = "1.35.1", features = ["full", "test-util"] }
tracing = { version = "0.1.40", features = ["log"] }
[dependencies]
octopush_cli = { path = "crates/octopush_cli" }
@ -27,5 +27,5 @@ eyre = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
dotenv = { version = "0.15.0", features = ["clap", "cli"] }

View File

@ -10,4 +10,4 @@ gitea_raw_client = { path = "../gitea_raw_client" }
async-trait = { workspace = true }
reqwest = "0.11.17"
reqwest = "0.11.23"

View File

@ -10,8 +10,8 @@ edition = "2018"
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
url = "^2.3"
uuid = { version = "^1.3", features = ["serde"] }
url = "^2.5"
uuid = { version = "^1.6", features = ["serde"] }
[dependencies.reqwest]
version = "^0.11"
features = ["json", "multipart"]

View File

@ -13,4 +13,4 @@ eyre = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true }
clap = { version = "4.2.7", features = ["env"] }
clap = { version = "4.4.18", features = ["env"] }

View File

@ -15,10 +15,10 @@ tracing = { workspace = true }
rand = "0.8.5"
hex = "0.4.3"
git2 = { version = "0.17.1", features = [
git2 = { version = "0.18.1", features = [
"vendored-libgit2",
"vendored-openssl",
] }
serde = { version = "1.0.163", features = ["derive"] }
serde_yaml = "0.9.21"
octocrab = { version = "0.21.0", features = ["futures-core", "futures-util"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_yaml = "0.9.30"
octocrab = { version = "0.33.1", features = ["futures-core", "futures-util"] }