From 8c9e5457a7a13c718d08e08632fd6bc967feb3ec Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Mon, 7 Mar 2022 10:25:29 +0000 Subject: [PATCH] chore: add license info missing from some crates (#3892) Description --- Adds the BSD-3-Clause license field to our crates that were missing license info --- applications/deps_only/Cargo.toml | 1 + applications/launchpad/backend/Cargo.toml | 2 +- applications/tari_app_utilities/Cargo.toml | 1 + applications/tari_console_wallet/Cargo.toml | 1 + applications/test_faucet/Cargo.toml | 1 + dan_layer/common_types/Cargo.toml | 1 + dan_layer/core/Cargo.toml | 1 + dan_layer/storage_sqlite/Cargo.toml | 2 +- infrastructure/libtor/Cargo.toml | 1 + 9 files changed, 9 insertions(+), 2 deletions(-) diff --git a/applications/deps_only/Cargo.toml b/applications/deps_only/Cargo.toml index 775d00bf2e..c1fd777f9c 100644 --- a/applications/deps_only/Cargo.toml +++ b/applications/deps_only/Cargo.toml @@ -2,6 +2,7 @@ name = "deps_only" version = "0.1.0" edition = "2021" +license = "BSD-3-Clause" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/applications/launchpad/backend/Cargo.toml b/applications/launchpad/backend/Cargo.toml index d3fb722434..1ca733f255 100644 --- a/applications/launchpad/backend/Cargo.toml +++ b/applications/launchpad/backend/Cargo.toml @@ -3,7 +3,7 @@ name = "tari_launchpad" version = "0.28.1" description = "The Tari Launcher" authors = ["The Tari Development Community"] -license = "" +license = "BSD-3-Clause" repository = "" edition = "2018" build = "src/build.rs" diff --git a/applications/tari_app_utilities/Cargo.toml b/applications/tari_app_utilities/Cargo.toml index 73ca935a17..5852d1823f 100644 --- a/applications/tari_app_utilities/Cargo.toml +++ b/applications/tari_app_utilities/Cargo.toml @@ -3,6 +3,7 @@ name = "tari_app_utilities" version = "0.28.1" authors = ["The Tari Development Community"] edition = "2018" +license = "BSD-3-Clause" [dependencies] tari_comms = { path = "../../comms" } diff --git a/applications/tari_console_wallet/Cargo.toml b/applications/tari_console_wallet/Cargo.toml index c5d58e139a..b201d352f8 100644 --- a/applications/tari_console_wallet/Cargo.toml +++ b/applications/tari_console_wallet/Cargo.toml @@ -3,6 +3,7 @@ name = "tari_console_wallet" version = "0.28.1" authors = ["The Tari Development Community"] edition = "2018" +license = "BSD-3-Clause" [dependencies] tari_wallet = { path = "../../base_layer/wallet", features = ["bundled_sqlite"] } diff --git a/applications/test_faucet/Cargo.toml b/applications/test_faucet/Cargo.toml index e5c98cf9e4..a36d1ab8b6 100644 --- a/applications/test_faucet/Cargo.toml +++ b/applications/test_faucet/Cargo.toml @@ -3,6 +3,7 @@ name = "test_faucet" version = "0.28.1" authors = ["The Tari Development Community"] edition = "2018" +license = "BSD-3-Clause" [features] simd = ["tari_crypto/simd"] diff --git a/dan_layer/common_types/Cargo.toml b/dan_layer/common_types/Cargo.toml index a034648d3a..524fc93f5c 100644 --- a/dan_layer/common_types/Cargo.toml +++ b/dan_layer/common_types/Cargo.toml @@ -2,6 +2,7 @@ name = "tari_dan_common_types" version = "0.1.0" edition = "2021" +license = "BSD-3-Clause" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/dan_layer/core/Cargo.toml b/dan_layer/core/Cargo.toml index fa3c69eb8e..04642c2d48 100644 --- a/dan_layer/core/Cargo.toml +++ b/dan_layer/core/Cargo.toml @@ -2,6 +2,7 @@ name = "tari_dan_core" version = "0.1.0" edition = "2018" +license = "BSD-3-Clause" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/dan_layer/storage_sqlite/Cargo.toml b/dan_layer/storage_sqlite/Cargo.toml index 2ff58b59a3..4294fdcbce 100644 --- a/dan_layer/storage_sqlite/Cargo.toml +++ b/dan_layer/storage_sqlite/Cargo.toml @@ -2,7 +2,7 @@ name = "tari_dan_storage_sqlite" version = "0.1.0" edition = "2018" - +license = "BSD-3-Clause" [dependencies] tari_dan_core = {path="../core"} diff --git a/infrastructure/libtor/Cargo.toml b/infrastructure/libtor/Cargo.toml index 31f9a53cb7..99b4e0d6a9 100644 --- a/infrastructure/libtor/Cargo.toml +++ b/infrastructure/libtor/Cargo.toml @@ -2,6 +2,7 @@ name = "tari_libtor" version = "0.24.0" edition = "2021" +license = "BSD-3-Clause" [dependencies] tari_common = { path = "../../common" }