Skip to content

Commit 56209f4

Browse files
authored
release: add missing metadata (lambdaclass#458)
1 parent 4e6ce71 commit 56209f4

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@ exclude = ["ensure-no_std"]
55
[workspace.package]
66
version = "0.1.0"
77
edition = "2021"
8+
license = "Apache-2.0"
9+
repository = "https://github.com/lambdaclass/lambdaworks"
810

911
[workspace.dependencies]
1012
iai-callgrind = "0.3.1"
13+
lambdaworks-crypto = { path = "./crypto", version = "0.1.0" }
14+
lambdaworks-gpu = { path = "./gpu", version = "0.1.0" }
15+
lambdaworks-math = { path = "./math", version = "0.1.0" }
1116

1217
[profile.bench]
1318
lto = true

crypto/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "lambdaworks-crypto"
3+
description = "Data structures and primitives for cryptography library"
34
version.workspace = true
45
edition.workspace = true
6+
license.workspace = true
57

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

8-
[dependencies.lambdaworks-math]
9-
path = "../math"
10-
1110
[dependencies]
11+
lambdaworks-math.workspace = true
1212
sha3 = "0.10.6"
1313
thiserror = "1.0.38"
1414

gpu/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "lambdaworks-gpu"
3+
description = "Modular math library for cryptography - GPU implementation"
34
version.workspace = true
45
edition.workspace = true
6+
license.workspace = true
57

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

math/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "lambdaworks-math"
3+
description = "Modular math library for cryptography"
34
version.workspace = true
45
edition.workspace = true
6+
license.workspace = true
57

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

@@ -20,7 +22,7 @@ objc = { version = "0.2.7", optional = true }
2022
# cuda
2123
cudarc = { version = "0.9.7", optional = true }
2224

23-
lambdaworks-gpu = { path = "../gpu" }
25+
lambdaworks-gpu.workspace = true
2426

2527
[dev-dependencies]
2628
proptest = "1.1.0"

0 commit comments

Comments
 (0)