diff options
Diffstat (limited to 'mingling_core/Cargo.toml')
| -rw-r--r-- | mingling_core/Cargo.toml | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml index f3ba9a2..166e0d5 100644 --- a/mingling_core/Cargo.toml +++ b/mingling_core/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "mingling_core" -version = "0.1.8" -edition = "2024" -license = "MIT OR Apache-2.0" +version.workspace = true +edition.workspace = true +license.workspace = true description = "Core of the mingling library" -repository = "https://github.com/catilgrass/mingling" +repository.workspace = true [features] nightly = [] @@ -27,23 +27,22 @@ comp = ["dep:just_template"] debug = ["dep:log", "dep:env_logger"] [dependencies] -just_fmt = "0.1.2" -thiserror = "2" +just_fmt.workspace = true +thiserror.workspace = true +once_cell.workspace = true -once_cell = "1.21.4" - -dirs = { version = "6", optional = true } +dirs = { workspace = true, optional = true } # comp -just_template = { version = "0.1.3", optional = true } +just_template = { workspace = true, optional = true } # general_renderer -serde = { version = "1.0", features = ["derive"], optional = true } -ron = { version = "0.12.1", optional = true } -serde_json = { version = "1", optional = true } -serde_yaml = { version = "0.9", optional = true } -toml = { version = "1.1.2", optional = true } +serde = { workspace = true, optional = true } +ron = { workspace = true, optional = true } +serde_json = { workspace = true, optional = true } +serde_yaml = { workspace = true, optional = true } +toml = { workspace = true, optional = true } # debug -log = { version = "0.4", optional = true } -env_logger = { version = "0.11", optional = true } +log = { workspace = true, optional = true } +env_logger = { workspace = true, optional = true } |
