-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[workspace]
members = [
"crates/core",
"crates/field",
"crates/polynomial",
"crates/fft",
"crates/sum-check",
"crates/multilinear",
"crates/low-degree-test",
"crates/frievalds",
"crates/shamir",
"crates/rsa",
"crates/commitments",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Utsav <sharmautsav0531@gmail.com>"]
description = "Cryptographic algorithms implementation in Rust"
license = "MIT"
repository = "https://github.com/yourusername/basic-randomness-algorithms"
keywords = ["cryptography", "zero-knowledge", "proofs", "algorithms"]
categories = ["cryptography", "algorithms"]
[workspace.dependencies]
rand = "0.9.1"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
[package]
name = "basic-randomness-algorithms"
version = "0.1.0"
edition = "2021"
[dependencies]
crypto-core = { path = "crates/core" }
crypto-field = { path = "crates/field" }
crypto-polynomial = { path = "crates/polynomial" }
crypto-fft = { path = "crates/fft" }
crypto-sum-check = { path = "crates/sum-check" }
crypto-multilinear = { path = "crates/multilinear" }
crypto-low-degree-test = { path = "crates/low-degree-test" }
crypto-frievalds = { path = "crates/frievalds" }
crypto-shamir = { path = "crates/shamir" }
crypto-rsa = { path = "crates/rsa" }
commitments = { path = "crates/commitments" }
rand = { workspace = true }