Skip to content

Commit

Permalink
Update to use workspace.dependencies
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Lee <[email protected]>
  • Loading branch information
Jasper-Bekkers and huacnlee committed Sep 25, 2024
1 parent 84ac7db commit 009eab2
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 50 deletions.
49 changes: 40 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,52 @@ readme = "README.md"
repository = "https://github.com/longbridgeapp/rust-i18n"
version = "3.1.2"

[dependencies]
[workspace.dependencies]
anyhow = "1"
arc-swap = "1.6.0"
base62 = "2.0.2"
clap = { version = "4.1.14", features = ["derive"] }
criterion = "0.5"
foo = { path = "examples/foo" }
glob = "0.3"
globwalk = "0.8.1"
ignore = "0.4"
indoc = "1"
itertools = "0.11.0"
lazy_static = "1"
normpath = "1.1.1"
once_cell = "1.10.0"
rust-i18n-support = { path = "./crates/support", version = "3.1.2" }
rust-i18n-macro = { path = "./crates/macro", version = "3.1.2" }
proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1.0.2"
regex = "1"
rust-i18n = { path = "." }
rust-i18n-extract = { path = "./crates/extract", version = "3.1" }
rust-i18n-macro = { path = "./crates/macro", version = "3.1" }
rust-i18n-support = { path = "./crates/support", version = "3.1" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yml = "0.0.12"
siphasher = "1.0"
smallvec = "1.12.0"
syn = { version = "2.0.18", features = ["full", "extra-traits"] }
toml = "0.8.8"
triomphe = { version = "0.1.11", features = ["arc-swap"] }

[dependencies]
once_cell.workspace = true
rust-i18n-support.workspace = true
rust-i18n-macro.workspace = true
smallvec.workspace = true

[dev-dependencies]
foo = { path = "examples/foo" }
criterion = "0.5"
lazy_static = "1"
serde_yml = "0.0.11"
foo.workspace = true
criterion.workspace = true
lazy_static.workspace = true
serde_yml.workspace = true

[build-dependencies]
globwalk = "0.8.1"
regex = "1"
globwalk.workspace = true
regex.workspace = true

[features]
log-miss-tr = ["rust-i18n-macro/log-miss-tr"]
Expand Down
8 changes: 4 additions & 4 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ repository = "https://github.com/longbridgeapp/rust-i18n"
version = "3.1.1"

[dependencies]
anyhow = "1"
clap = { version = "4.1.14", features = ["derive"] }
rust-i18n-support = { path = "../support", version = "3.0.0" }
rust-i18n-extract = { path = "../extract", version = "3.0.0" }
anyhow.workspace = true
clap.workspace = true
rust-i18n-support.workspace = true
rust-i18n-extract.workspace = true

[[bin]]
name = "cargo-i18n"
Expand Down
24 changes: 12 additions & 12 deletions crates/extract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ version = "3.1.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1"
ignore = "0.4"
proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1"
regex = "1"
rust-i18n-support = { path = "../support", version = "3.0.0" }
serde = "1"
serde_json = "1"
serde_yml = "0.0.11"
syn = { version = "2.0.18", features = ["full"] }
toml = "0.7.4"
anyhow.workspace = true
ignore.workspace = true
proc-macro2.workspace = true
quote.workspace = true
regex.workspace = true
rust-i18n-support.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yml.workspace = true
syn.workspace = true
toml.workspace = true

[dev-dependencies]
indoc = "1"
indoc.workspace = true
20 changes: 10 additions & 10 deletions crates/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ version = "3.1.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
glob = "0.3"
once_cell = "1.10.0"
proc-macro2 = "1.0"
quote = "1.0.2"
rust-i18n-support = { path = "../support", version = "3.0.0" }
serde = "1"
serde_json = "1"
serde_yml = "0.0.11"
syn = { version = "2.0.18", features = ["full", "extra-traits"] }
glob.workspace = true
once_cell.workspace = true
proc-macro2.workspace = true
quote.workspace = true
rust-i18n-support.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yml.workspace = true
syn.workspace = true

[dev-dependencies]
rust-i18n = { path = "../.." }
rust-i18n.workspace = true

[lib]
proc-macro = true
Expand Down
30 changes: 15 additions & 15 deletions crates/support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ repository = "https://github.com/longbridgeapp/rust-i18n"
version = "3.1.2"

[dependencies]
arc-swap = "1.6.0"
base62 = "2.0.2"
globwalk = "0.8.1"
itertools = "0.11.0"
once_cell = "1.10.0"
proc-macro2 = "1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yml = "0.0.11"
siphasher = "1.0"
toml = "0.7.4"
normpath = "1.1.1"
lazy_static = "1"
regex = "1"
triomphe = { version = "0.1.11", features = ["arc-swap"] }
arc-swap.workspace = true
base62.workspace = true
globwalk.workspace = true
itertools.workspace = true
once_cell.workspace = true
proc-macro2.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yml.workspace = true
siphasher.workspace = true
toml.workspace = true
normpath.workspace = true
lazy_static.workspace = true
regex.workspace = true
triomphe.workspace = true

0 comments on commit 009eab2

Please sign in to comment.