Skip to content

Commit

Permalink
release: add missing metadata (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oppen authored Jun 26, 2023
1 parent 4e6ce71 commit 56209f4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,14 @@ exclude = ["ensure-no_std"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/lambdaclass/lambdaworks"

[workspace.dependencies]
iai-callgrind = "0.3.1"
lambdaworks-crypto = { path = "./crypto", version = "0.1.0" }
lambdaworks-gpu = { path = "./gpu", version = "0.1.0" }
lambdaworks-math = { path = "./math", version = "0.1.0" }

[profile.bench]
lto = true
Expand Down
6 changes: 3 additions & 3 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "lambdaworks-crypto"
description = "Data structures and primitives for cryptography library"
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

[dependencies.lambdaworks-math]
path = "../math"

[dependencies]
lambdaworks-math.workspace = true
sha3 = "0.10.6"
thiserror = "1.0.38"

Expand Down
2 changes: 2 additions & 0 deletions gpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "lambdaworks-gpu"
description = "Modular math library for cryptography - GPU implementation"
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
4 changes: 3 additions & 1 deletion math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "lambdaworks-math"
description = "Modular math library for cryptography"
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 All @@ -20,7 +22,7 @@ objc = { version = "0.2.7", optional = true }
# cuda
cudarc = { version = "0.9.7", optional = true }

lambdaworks-gpu = { path = "../gpu" }
lambdaworks-gpu.workspace = true

[dev-dependencies]
proptest = "1.1.0"
Expand Down

0 comments on commit 56209f4

Please sign in to comment.