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 17, 2024
1 parent e08edab commit 81ca60b
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 40 deletions.
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" }
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" }
serde_json = { version = "1.0.117", features = ["preserve_order"] }
serde = { version = "1.0.202", 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.83"
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.83"
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.202", 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.82"
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.64", features = ["full", "derive", "extra-traits"] }
6 changes: 3 additions & 3 deletions scyllax-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ homepage.workspace = true
readme = 'crates.md'

[dependencies]
nom = "7"
nom = "7.1.3"

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

[[bench]]
name = "bench"
Expand Down
12 changes: 6 additions & 6 deletions scyllax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
async-trait = "0.1"
getrandom = "0.2"
mac_address = "1"
once_cell = "1"
async-trait = "0.1.80"
getrandom = "0.2.15"
mac_address = "1.1.6"
once_cell = "1.19.0"
scylla.workspace = true
scyllax-macros = { version = "0.2.0", path = "../scyllax-macros" }
scyllax-macros-core = { version = "0.2.0", path = "../scyllax-macros-core" }
thiserror = "1"
thiserror = "1.0.61"
tokio.workspace = true
tracing.workspace = true
uuid.workspace = true
serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
prost-types = { version = "0.12", optional = true }
prost-types = { version = "0.12.6", optional = true }

[features]
default = []
Expand Down

0 comments on commit 81ca60b

Please sign in to comment.