diff --git a/Cargo.toml b/Cargo.toml index 8ffe235..4ad50ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,8 @@ +[workspace.package] +version = "0.1.0" +authors = ["Kristofers Solo "] +edition = "2024" + [workspace] resolver = "2" members = ["aes", "cipher-core", "cipher-factory", "cli", "des"] diff --git a/aes/Cargo.toml b/aes/Cargo.toml index c669632..b4b9124 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -1,10 +1,12 @@ [package] name = "aes" -version = "0.1.0" -authors = ["Kristofers Solo "] -edition = "2024" +version.workspace = true +authors.workspace = true +edition.workspace = true [dependencies] +cipher-core.workspace = true +zeroize.workspace = true [dev-dependencies] claims.workspace = true diff --git a/cipher-core/Cargo.toml b/cipher-core/Cargo.toml index 352a29a..09ffddb 100644 --- a/cipher-core/Cargo.toml +++ b/cipher-core/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "cipher-core" -version = "0.1.0" -authors = ["Kristofers Solo "] -edition = "2024" +version.workspace = true +authors.workspace = true +edition.workspace = true [dependencies] thiserror.workspace = true diff --git a/cipher-factory/Cargo.toml b/cipher-factory/Cargo.toml index 4ba0ac1..33d8391 100644 --- a/cipher-factory/Cargo.toml +++ b/cipher-factory/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "cipher-factory" -version = "0.1.0" -edition = "2024" +version.workspace = true +authors.workspace = true +edition.workspace = true [dependencies] aes.workspace = true diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 477eab9..9c6016b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "cli" -version = "0.1.0" -authors = ["Kristofers Solo "] -edition = "2024" +version.workspace = true +authors.workspace = true +edition.workspace = true [dependencies] aes.workspace = true diff --git a/des/Cargo.toml b/des/Cargo.toml index ac6ab25..115e49e 100644 --- a/des/Cargo.toml +++ b/des/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "des" -version = "0.1.0" -authors = ["Kristofers Solo "] -edition = "2024" +version.workspace = true +authors.workspace = true +edition.workspace = true [dependencies] cipher-core.workspace = true