aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-04-08 03:56:01 -0500
committerCody <cody@codyq.dev>2023-04-08 03:56:01 -0500
commit97d31d00eff31ca626bbcf415c4f068d36af4079 (patch)
tree55d980ec4b2e9503338619357698bc3d26412c39
parent0eadd4c889049bd89b9dff437f1ed477277452fb (diff)
downloadsloth-97d31d00eff31ca626bbcf415c4f068d36af4079.tar.gz
Updated Cargo manifest to include license info
-rw-r--r--Cargo.toml5
-rw-r--r--crates/sloth/Cargo.toml6
-rw-r--r--crates/sloth_bytecode/Cargo.toml6
-rw-r--r--crates/sloth_bytecode/macros/Cargo.toml6
-rw-r--r--crates/sloth_vm/Cargo.toml6
5 files changed, 21 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e4a78d0..fed9008 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,6 +6,11 @@ members = [
"crates/sloth_vm",
]
+[workspace.package]
+license = "MIT OR Apache-2.0"
+version = "0.1.0"
+edition = "2021"
+
[profile.dev.package."*"]
opt-level = 2
diff --git a/crates/sloth/Cargo.toml b/crates/sloth/Cargo.toml
index 65b4859..2ee6919 100644
--- a/crates/sloth/Cargo.toml
+++ b/crates/sloth/Cargo.toml
@@ -1,7 +1,9 @@
[package]
name = "sloth"
-version = "0.1.0"
-edition = "2021"
+
+license.workspace = true
+version.workspace = true
+edition.workspace = true
[dependencies]
itertools = "0.10.5"
diff --git a/crates/sloth_bytecode/Cargo.toml b/crates/sloth_bytecode/Cargo.toml
index 981b6ee..76448ee 100644
--- a/crates/sloth_bytecode/Cargo.toml
+++ b/crates/sloth_bytecode/Cargo.toml
@@ -1,7 +1,9 @@
[package]
name = "sloth_bytecode"
-version = "0.1.0"
-edition = "2021"
+
+license.workspace = true
+version.workspace = true
+edition.workspace = true
[dependencies]
sloth_bytecode_macros = { path = "./macros" }
diff --git a/crates/sloth_bytecode/macros/Cargo.toml b/crates/sloth_bytecode/macros/Cargo.toml
index c75bc58..649d88a 100644
--- a/crates/sloth_bytecode/macros/Cargo.toml
+++ b/crates/sloth_bytecode/macros/Cargo.toml
@@ -1,7 +1,9 @@
[package]
name = "sloth_bytecode_macros"
-version = "0.1.0"
-edition = "2021"
+
+license.workspace = true
+version.workspace = true
+edition.workspace = true
[dependencies]
proc-macro2 = "1.0.54"
diff --git a/crates/sloth_vm/Cargo.toml b/crates/sloth_vm/Cargo.toml
index d27b6d2..e71c18d 100644
--- a/crates/sloth_vm/Cargo.toml
+++ b/crates/sloth_vm/Cargo.toml
@@ -1,6 +1,8 @@
[package]
name = "sloth_vm"
-version = "0.1.0"
-edition = "2021"
+
+license.workspace = true
+version.workspace = true
+edition.workspace = true
[dependencies]