diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-11 16:04:47 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-11 16:04:59 +0800 |
| commit | 794316c6e925097ef6b87693b4a610b4563309e6 (patch) | |
| tree | 2d5ecf39e7311aa404d80bb7487eeaf80143ae1a /systems/_asset | |
| parent | 8b38e22525adcafecd8b50daf041a1dc2d672d0b (diff) | |
Consolidate dependencies using workspace inheritance
Diffstat (limited to 'systems/_asset')
| -rw-r--r-- | systems/_asset/Cargo.toml | 12 | ||||
| -rw-r--r-- | systems/_asset/macros/Cargo.toml | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/systems/_asset/Cargo.toml b/systems/_asset/Cargo.toml index 12ac59c..c7586f6 100644 --- a/systems/_asset/Cargo.toml +++ b/systems/_asset/Cargo.toml @@ -4,12 +4,12 @@ edition = "2024" version.workspace = true [dependencies] -just_fmt = "0.1" - asset_macros = { path = "macros" } -tokio = { version = "1.48.0", features = ["full"] } -thiserror = "1.0.69" - -winapi = { version = "0.3", features = ["winnt"] } constants = { path = "../_constants" } + +just_fmt.workspace = true +thiserror.workspace = true +tokio.workspace = true + +winapi = { version = "0.3", features = ["winnt"] } diff --git a/systems/_asset/macros/Cargo.toml b/systems/_asset/macros/Cargo.toml index e096958..5a2ae25 100644 --- a/systems/_asset/macros/Cargo.toml +++ b/systems/_asset/macros/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" proc-macro = true [dependencies] -just_fmt = "0.1" -syn = { version = "2.0", features = ["full", "extra-traits"] } -quote = "1.0" -proc-macro2 = "1.0" +just_fmt.workspace = true +proc-macro2.workspace = true +quote.workspace = true +syn = { workspace = true, features = ["full", "extra-traits"] } |
