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 bd57dc51e..f81dbc315 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 7b5000f15..4a6394711 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 5906f2646..629cd74ea 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 922100331..9be0009ed 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 7a23d4594..9d1bd7521 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 a675cfe15..e4de36ce5 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 084ebfac0..cff9b6f46 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 c122a5e1c..4fdbf4059 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 f0a9306b1..8e3801970 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"