From 062055dc5ea3721bb6dc89ebb8849b377143d1f3 Mon Sep 17 00:00:00 2001 From: Aaryamann Challani <43716372+rymnc@users.noreply.github.com> Date: Mon, 27 Feb 2023 11:47:55 +0530 Subject: [PATCH] fix(license): add licensing info to cargo.toml (#121) --- multiplier/Cargo.toml | 1 + private-settlement/Cargo.toml | 1 + rln/Cargo.toml | 1 + semaphore/Cargo.toml | 1 + utils/Cargo.toml | 1 + 5 files changed, 5 insertions(+) diff --git a/multiplier/Cargo.toml b/multiplier/Cargo.toml index bc09f41..a30ba96 100644 --- a/multiplier/Cargo.toml +++ b/multiplier/Cargo.toml @@ -2,6 +2,7 @@ name = "multiplier" version = "0.1.0" edition = "2018" +license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/private-settlement/Cargo.toml b/private-settlement/Cargo.toml index 3fbefa5..57a7563 100644 --- a/private-settlement/Cargo.toml +++ b/private-settlement/Cargo.toml @@ -2,6 +2,7 @@ name = "private-settlement" version = "0.1.0" edition = "2021" +license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rln/Cargo.toml b/rln/Cargo.toml index 275d89c..7331a0d 100644 --- a/rln/Cargo.toml +++ b/rln/Cargo.toml @@ -2,6 +2,7 @@ name = "rln" version = "0.1.0" edition = "2021" +license = "MIT OR Apache-2.0" [lib] crate-type = ["cdylib", "rlib", "staticlib"] diff --git a/semaphore/Cargo.toml b/semaphore/Cargo.toml index b1979f1..0361f3b 100644 --- a/semaphore/Cargo.toml +++ b/semaphore/Cargo.toml @@ -2,6 +2,7 @@ name = "semaphore-wrapper" version = "0.1.0" edition = "2021" +license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 209b963..7e746ed 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -2,6 +2,7 @@ name = "utils" version = "0.1.0" edition = "2021" +license = "MIT OR Apache-2.0" [dependencies] ark-ff = { version = "0.3.0", default-features = false, features = ["asm"] }