Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 25, 2024
1 parent 919b0bb commit 67353b5
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 148 deletions.
155 changes: 47 additions & 108 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ readme = "README.md"
scyllax-macros = { verison = "0.2.0", path = "./scyllax-macros" }
scyllax-macros-core = { verison = "0.2.0", path = "./scyllax-macros-core" }
scyllax-parser = { verison = "0.2.0", path = "./scyllax-parser" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json", "tracing-log", "parking_lot"] }
tokio = { version = "1", features = ["full", "tracing"] }
scylla = { version = "0.12", features = ["time"] }
serde_json = { version = "1", features = ["preserve_order"] }
serde = { version = "1", features = ["derive"] }
uuid = { version = "1", features = ["serde", "v1", "std", "fast-rng"] }
darling = "0.20"
trybuild = "1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "json", "tracing-log", "parking_lot"] }
tokio = { version = "1.37.0", features = ["full", "tracing"] }
scylla = { version = "0.13.0", features = ["time"] }
serde_json = { version = "1.0.117", features = ["preserve_order"] }
serde = { version = "1.0.203", features = ["derive"] }
uuid = { version = "1.8.0", features = ["serde", "v1", "std", "fast-rng"] }
darling = "0.20.9"
trybuild = "1.0.96"

[profile.dev.package.backtrace]
opt-level = 3
18 changes: 9 additions & 9 deletions example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@ homepage.workspace = true
publish = false

[dependencies]
anyhow = "1"
anyhow = "1.0.86"
serde.workspace = true
serde_json.workspace = true
scylla.workspace = true
scyllax = { path = "../scyllax", features = ["json"] }
tokio = { version = "1", features = ["full"] }
tokio = { version = "1.37.0", features = ["full"] }
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
tokio-stream = "0.1.14"
futures-util = "0.3.29"
futures = "0.3.29"
rayon = "1.8.0"
time = "0.3.34"
tokio-stream = "0.1.15"
futures-util = "0.3.30"
futures = "0.3.30"
rayon = "1.10.0"
time = "0.3.36"

[features]
default = ["integration"]
integration = []

[dev-dependencies]
pretty_assertions = "1"
criterion = { version = "0.5", features = ["html_reports", "async_tokio"] }
pretty_assertions = "1.4.0"
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }

[[bench]]
name = "bench"
Expand Down
18 changes: 9 additions & 9 deletions scyllax-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ path = "src/bin/scyllax.rs"

[dependencies]
tokio.workspace = true
clap = { version = "4", features = ["derive", "env"] }
clap_complete = { version = "4" }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
anyhow = "1.0.75"
clap = { version = "4.5.4", features = ["derive", "env"] }
clap_complete = { version = "4.5.2" }
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
anyhow = "1.0.86"
url = { version = "2.5.0", default-features = false }
async-trait = "0.1"
console = "0.15.7"
async-trait = "0.1.80"
console = "0.15.8"
scylla.workspace = true
scyllax = { version = "0.2.0", path = "../scyllax" }
serde_json = "1.0.108"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.117"
serde = { version = "1.0.203", features = ["derive"] }
tracing-subscriber.workspace = true
tracing.workspace = true
time = { version = "0.3.30", features = ["formatting"] }
time = { version = "0.3.36", features = ["formatting"] }
sha2 = "0.10.8"
uuid.workspace = true

Expand Down
8 changes: 4 additions & 4 deletions scyllax-macros-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ readme = "../README.md"
[dependencies]
bae = { version = "0.2", package = "sea-bae" }
convert_case = "0.6.0"
darling = { version = "0.20", features = ["suggestions"] }
proc-macro2 = "1"
quote = "1"
darling = { version = "0.20.9", features = ["suggestions"] }
proc-macro2 = "1.0.84"
quote = "1.0.36"
scyllax-parser = { path = "../scyllax-parser", version = "0.2.0" }
syn = { version = "2", features = ["full", "derive", "extra-traits"] }
syn = { version = "2.0.66", features = ["full", "derive", "extra-traits"] }
Loading

0 comments on commit 67353b5

Please sign in to comment.