Skip to content

Commit

Permalink
chore: Run cargo autoinherit (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 authored Aug 8, 2024
1 parent eb984e7 commit ff40b64
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 30 deletions.
25 changes: 25 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,28 @@ resolver = "2"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/dudykr/ddbase.git"

[workspace.dependencies]
Inflector = { version = "0.11.4", default-features = false }
arrayvec = "0.7.2"
compact_str = "0.7.1"
criterion = "0.5.1"
hashbrown = { version = "0.14.3", default-features = false }
kstring = "2.0.0"
new_debug_unreachable = "1.0.4"
num_cpus = "1.16.0"
once_cell = "1.18.0"
phf = "0.11.2"
proc-macro2 = "1.0.70"
quote = "1.0.33"
rand = "0.8.5"
rayon = "1.8.0"
rkyv = "0.7.42"
rustc-hash = "1.1.0"
serde = { version = "1.0.192", default-features = false }
serde_derive = "1.0.193"
smartstring = "1.0.1"
smol_str = "0.2.0"
string_cache = "0.8.7"
syn = "2.0.39"
triomphe = "0.1.11"
4 changes: 2 additions & 2 deletions crates/default-from-serde/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ std = ["serde/std"]

[dependencies]
derive-default-from-serde = { path = "../derive-default-from-serde", version = "0.1.1" }
serde = { version = "1", default-features = false }
serde = { workspace = true }

[dev-dependencies]
serde_derive = "1.0.193"
serde_derive = { workspace = true }
6 changes: 3 additions & 3 deletions crates/derive-default-from-serde/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ version = "0.1.2"
proc-macro = true

[dependencies]
proc-macro2 = "1.0.70"
quote = "1.0.33"
syn = "2.0.39"
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true }
34 changes: 17 additions & 17 deletions crates/hstr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ rkyv = ["dep:rkyv"]
serde = ["dep:serde"]

[dependencies]
hashbrown = { version = "0.14.3", default-features = false }
new_debug_unreachable = "1.0.4"
once_cell = "1.18.0"
phf = "0.11.2"
rkyv = { version = "0.7.42", optional = true }
rustc-hash = "1.1.0"
serde = { version = "1.0.192", optional = true }
triomphe = "0.1.11"
hashbrown = { workspace = true }
new_debug_unreachable = { workspace = true }
once_cell = { workspace = true }
phf = { workspace = true }
rkyv = { workspace = true, optional = true }
rustc-hash = { workspace = true }
serde = { workspace = true, optional = true }
triomphe = { workspace = true }

[dev-dependencies]
compact_str = "0.7.1"
criterion = "0.5.1"
compact_str = { workspace = true }
criterion = { workspace = true }
dudy-malloc = { version = "0.1.0", path = "../dudy-malloc" }
kstring = "2.0.0"
num_cpus = "1.16.0"
rand = "0.8.5"
rayon = "1.8.0"
smartstring = "1.0.1"
smol_str = "0.2.0"
string_cache = "0.8.7"
kstring = { workspace = true }
num_cpus = { workspace = true }
rand = { workspace = true }
rayon = { workspace = true }
smartstring = { workspace = true }
smol_str = { workspace = true }
string_cache = { workspace = true }
8 changes: 4 additions & 4 deletions crates/is-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ version = "0.3.5"
proc-macro = true

[dependencies]
Inflector = { version = "0.11.4", default-features = false }
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = [
Inflector = { workspace = true }
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true, features = [
"fold",
"full",
"derive",
Expand Down
2 changes: 1 addition & 1 deletion crates/st-map/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ version = "0.2.3"
[lib]

[dependencies]
arrayvec = "0.7.2"
arrayvec = { workspace = true }
static-map-macro = { path = "../static-map-macro", version = "0.3.2" }
6 changes: 3 additions & 3 deletions crates/static-map-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ version = "0.3.3"
proc-macro = true

[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full"] }
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true, features = ["full"] }

0 comments on commit ff40b64

Please sign in to comment.