diff --git a/Cargo.toml b/Cargo.toml index 5893664..98c5d14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,11 @@ resolver = "2" members = ["torn-api", "torn-api-codegen"] +[workspace.package] +license-file = "./LICENSE" +repository = "https://github.com/TotallyNot/torn-api.rs.git" +homepage = "https://github.com/TotallyNot/torn-api.rs.git" + [workspace.dependencies] serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } diff --git a/torn-api-codegen/Cargo.toml b/torn-api-codegen/Cargo.toml index caceb6f..63e7107 100644 --- a/torn-api-codegen/Cargo.toml +++ b/torn-api-codegen/Cargo.toml @@ -4,6 +4,9 @@ authors = ["Pyrit [2111649]"] version = "0.1.0" edition = "2024" description = "Contains the v2 torn API model descriptions and codegen for the bindings" +license-file = { workspace = true } +repository = { workspace = true } +homepage = { workspace = true } [dependencies] serde = { workspace = true } diff --git a/torn-api/Cargo.toml b/torn-api/Cargo.toml index c48651b..fed3faf 100644 --- a/torn-api/Cargo.toml +++ b/torn-api/Cargo.toml @@ -2,6 +2,10 @@ name = "torn-api" version = "1.0.0" edition = "2024" +description = "Auto-generated bindings for the v2 torn api" +license-file = { workspace = true } +repository = { workspace = true } +homepage = { workspace = true } [dependencies] serde = { workspace = true, features = ["derive"] } @@ -21,7 +25,7 @@ thiserror = "2" tokio = { version = "1", features = ["full"] } [build-dependencies] -torn-api-codegen = { path = "../torn-api-codegen" } +torn-api-codegen = { path = "../torn-api-codegen", version = "0.1" } syn = { workspace = true, features = ["parsing"] } proc-macro2 = { workspace = true } prettyplease = "0.2"