diff --git a/Cargo.toml b/Cargo.toml index 0c1c708..967050d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,13 @@ resolver = "2" members = ["clients/rust", "interface"] +[workspace.package] +authors = ["Anza Maintainers "] +repository = "https://github.com/solana-program/system" +homepage = "https://anza.xyz/" +license = "Apache-2.0" +edition = "2021" + [workspace.metadata.cli] solana = "2.1.0" diff --git a/interface/Cargo.toml b/interface/Cargo.toml index 57a34e6..8900872 100644 --- a/interface/Cargo.toml +++ b/interface/Cargo.toml @@ -2,12 +2,12 @@ name = "solana-system-interface" version = "1.0.0" description = "Instructions and constructors for the System program" -authors = ["Anza Maintainers "] -repository = "https://github.com/solana-program/system" -homepage = "https://anza.xyz/" -license = "Apache-2.0" -edition = "2021" readme = "README.md" +authors = { workspace = true } +repository = { workspace = true } +homepage = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]