chore(workspace): declare license metadata in Cargo.toml

This commit is contained in:
Serkyo 2026-05-17 21:06:13 +02:00
parent c97e7d2fac
commit de17b143db
6 changed files with 27 additions and 10 deletions

View file

@ -2,6 +2,13 @@
resolver = "3" resolver = "3"
members = ["crates/*"] 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] [workspace.lints.rust]
unsafe_code = "warn" unsafe_code = "warn"
missing_docs = "warn" missing_docs = "warn"

View file

@ -1,7 +1,9 @@
[package] [package]
name = "client" name = "client"
version = "0.1.0" version.workspace = true
edition = "2024" edition.workspace = true
license.workspace = true
authors.workspace = true
[lints] [lints]
workspace = true workspace = true

View file

@ -1,7 +1,9 @@
[package] [package]
name = "renderer" name = "renderer"
version = "0.1.0" version.workspace = true
edition = "2024" edition.workspace = true
license.workspace = true
authors.workspace = true
[lints] [lints]
workspace = true workspace = true

View file

@ -1,7 +1,9 @@
[package] [package]
name = "scripting" name = "scripting"
version = "0.1.0" version.workspace = true
edition = "2024" edition.workspace = true
license.workspace = true
authors.workspace = true
[lints] [lints]
workspace = true workspace = true

View file

@ -1,7 +1,9 @@
[package] [package]
name = "server" name = "server"
version = "0.1.0" version.workspace = true
edition = "2024" edition.workspace = true
license.workspace = true
authors.workspace = true
[lints] [lints]
workspace = true workspace = true

View file

@ -1,7 +1,9 @@
[package] [package]
name = "shared" name = "shared"
version = "0.1.0" version.workspace = true
edition = "2024" edition.workspace = true
license.workspace = true
authors.workspace = true
[lints] [lints]
workspace = true workspace = true