Skip to content

Commit

Permalink
chore(build): add Cargo settings on workspace level
Browse files Browse the repository at this point in the history
Set authors, edition and license on workspace level.
  • Loading branch information
dartdart26 committed Nov 12, 2024
1 parent 46f794f commit 99a7422
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions fhevm-engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
resolver = "2"
members = ["coprocessor", "executor", "fhevm-engine-common"]

[workspace.package]
authors = ["Zama"]
edition = "2021"
license = "BSD-3-Clause-Clear"

[workspace.dependencies]
anyhow = "1.0.86"
bincode = "1.3.3"
Expand Down
4 changes: 3 additions & 1 deletion fhevm-engine/coprocessor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[package]
name = "coprocessor"
version = "0.1.1"
edition = "2021"
default-run = "coprocessor"
authors.workspace = true
edition.workspace = true
license.workspace = true

[dependencies]
# workspace dependencies
Expand Down
4 changes: 3 additions & 1 deletion fhevm-engine/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "executor"
version = "0.1.1"
edition = "2021"
authors.workspace = true
edition.workspace = true
license.workspace = true

[dependencies]
# workspace dependencies
Expand Down
4 changes: 3 additions & 1 deletion fhevm-engine/fhevm-engine-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "fhevm-engine-common"
version = "0.1.1"
edition = "2021"
authors.workspace = true
edition.workspace = true
license.workspace = true

[dependencies]
# workspace dependencies
Expand Down

0 comments on commit 99a7422

Please sign in to comment.