From 92dc7a5ea1ae9d33ae973b4c1bb771d76cda910b Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Tue, 8 Oct 2019 09:25:59 -0700 Subject: [PATCH] Fix authorship, license information. (#55) * Fix authorship, license information. I *thought* I had done a sed pass over the Cargo defaults when doing repository initialization, but I guess I missed it or something. Anyways, fixed now. --- zebra-chain/Cargo.toml | 3 ++- zebra-client/Cargo.toml | 3 ++- zebra-consensus/Cargo.toml | 3 ++- zebra-network/Cargo.toml | 3 ++- zebra-reactor/Cargo.toml | 3 ++- zebra-rpc/Cargo.toml | 3 ++- zebra-script/Cargo.toml | 3 ++- zebra-storage/Cargo.toml | 3 ++- zebrad/Cargo.toml | 3 ++- 9 files changed, 18 insertions(+), 9 deletions(-) diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index bd57dc51..f81dbc31 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-chain" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebra-client/Cargo.toml b/zebra-client/Cargo.toml index 7b5000f1..4a639471 100644 --- a/zebra-client/Cargo.toml +++ b/zebra-client/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-client" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 5906f264..629cd74e 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-consensus" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 92210033..9be0009e 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-network" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebra-reactor/Cargo.toml b/zebra-reactor/Cargo.toml index 7a23d459..9d1bd752 100644 --- a/zebra-reactor/Cargo.toml +++ b/zebra-reactor/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-reactor" +license = "MIT OR Apache-2.0" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index a675cfe1..e4de36ce 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-rpc" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index 084ebfac..cff9b6f4 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-script" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebra-storage/Cargo.toml b/zebra-storage/Cargo.toml index c122a5e1..4fdbf405 100644 --- a/zebra-storage/Cargo.toml +++ b/zebra-storage/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "zebra-storage" version = "0.1.0" -authors = ["Henry de Valence "] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index f0a9306b..8e380197 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "zebrad" -authors = [] +authors = ["Zcash Foundation "] +license = "MIT OR Apache-2.0" version = "0.1.0" edition = "2018"