diff --git a/Cargo.toml b/Cargo.toml index d0170a6..ce4ee22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,13 @@ resolver = "3" members = ["crates/*"] +[workspace.package] +license = "AGPL-3.0-only" +license-file = "LICENSE.md" +authors = ["Cryoforge Nexus"] +edition = "2024" +version = "0.1.0" + [workspace.lints.rust] unsafe_code = "warn" missing_docs = "warn" diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index d5bdb02..f7c2274 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "client" -version = "0.1.0" -edition = "2024" +version.workspace = true +edition.workspace = true +license.workspace = true +authors.workspace = true [lints] workspace = true diff --git a/crates/renderer/Cargo.toml b/crates/renderer/Cargo.toml index 6a68620..26757b7 100644 --- a/crates/renderer/Cargo.toml +++ b/crates/renderer/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "renderer" -version = "0.1.0" -edition = "2024" +version.workspace = true +edition.workspace = true +license.workspace = true +authors.workspace = true [lints] workspace = true diff --git a/crates/scripting/Cargo.toml b/crates/scripting/Cargo.toml index 3bca369..71dfbdc 100644 --- a/crates/scripting/Cargo.toml +++ b/crates/scripting/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "scripting" -version = "0.1.0" -edition = "2024" +version.workspace = true +edition.workspace = true +license.workspace = true +authors.workspace = true [lints] workspace = true diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 843a82d..1e8d42f 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "server" -version = "0.1.0" -edition = "2024" +version.workspace = true +edition.workspace = true +license.workspace = true +authors.workspace = true [lints] workspace = true diff --git a/crates/shared/Cargo.toml b/crates/shared/Cargo.toml index 3f90a17..5f3e105 100644 --- a/crates/shared/Cargo.toml +++ b/crates/shared/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "shared" -version = "0.1.0" -edition = "2024" +version.workspace = true +edition.workspace = true +license.workspace = true +authors.workspace = true [lints] workspace = true