File tree 4 files changed +13
-4
lines changed
4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,14 @@ exclude = ["ensure-no_std"]
5
5
[workspace .package ]
6
6
version = " 0.1.0"
7
7
edition = " 2021"
8
+ license = " Apache-2.0"
9
+ repository = " https://github.com/lambdaclass/lambdaworks"
8
10
9
11
[workspace .dependencies ]
10
12
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" }
11
16
12
17
[profile .bench ]
13
18
lto = true
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lambdaworks-crypto"
3
+ description = " Data structures and primitives for cryptography library"
3
4
version.workspace = true
4
5
edition.workspace = true
6
+ license.workspace = true
5
7
6
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
9
8
- [dependencies .lambdaworks-math ]
9
- path = " ../math"
10
-
11
10
[dependencies ]
11
+ lambdaworks-math.workspace = true
12
12
sha3 = " 0.10.6"
13
13
thiserror = " 1.0.38"
14
14
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lambdaworks-gpu"
3
+ description = " Modular math library for cryptography - GPU implementation"
3
4
version.workspace = true
4
5
edition.workspace = true
6
+ license.workspace = true
5
7
6
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
9
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lambdaworks-math"
3
+ description = " Modular math library for cryptography"
3
4
version.workspace = true
4
5
edition.workspace = true
6
+ license.workspace = true
5
7
6
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
9
@@ -20,7 +22,7 @@ objc = { version = "0.2.7", optional = true }
20
22
# cuda
21
23
cudarc = { version = " 0.9.7" , optional = true }
22
24
23
- lambdaworks-gpu = { path = " ../gpu " }
25
+ lambdaworks-gpu.workspace = true
24
26
25
27
[dev-dependencies ]
26
28
proptest = " 1.1.0"
You can’t perform that action at this time.
0 commit comments