Skip to content

Commit

Permalink
add licenses to workspaces/crates
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanp committed Mar 19, 2024
1 parent ba771cc commit 013fc6d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ members = [
name = "kairos"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"

5 changes: 3 additions & 2 deletions kairos-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ bench = false

[package]
name = "kairos-cli"
version = "0.1.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
6 changes: 6 additions & 0 deletions kairos-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ members = [
"methods",
]

[workspace.package]
name = "kairos-prover"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"

# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3
Expand Down
5 changes: 3 additions & 2 deletions kairos-prover/host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "host"
version = "0.1.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license.workspace = true

[dependencies]
methods = { path = "../methods" }
Expand Down
5 changes: 3 additions & 2 deletions kairos-prover/methods/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "methods"
version = "0.1.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license.workspace = true

[build-dependencies]
risc0-build = "=0.19.1"
Expand Down
1 change: 1 addition & 0 deletions kairos-prover/methods/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
name = "method_name"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"

[workspace]

Expand Down
1 change: 1 addition & 0 deletions kairos-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "kairos-server"
version.workspace = true
edition.workspace = true
license.workspace = true

[lib]

Expand Down

0 comments on commit 013fc6d

Please sign in to comment.