-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 885 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 885 Bytes
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
[package]
name = "mpz-share-conversion"
version = "0.1.0-alpha.5"
edition = "2024"
[lints]
workspace = true
[lib]
name = "mpz_share_conversion"
[features]
default = []
test-utils = ["mpz-share-conversion-core/test-utils"]
[dependencies]
mpz-core = { workspace = true }
mpz-common.workspace = true
mpz-share-conversion-core = { workspace = true }
mpz-fields.workspace = true
mpz-ole.workspace = true
thiserror.workspace = true
async-trait.workspace = true
serio.workspace = true
rand.workspace = true
[dev-dependencies]
mpz-share-conversion-core = { workspace = true, features = ["test-utils"] }
mpz-ole = { workspace = true, features = ["test-utils"] }
mpz-common = { workspace = true, features = [
"executor",
"test-utils",
"ideal",
] }
mpz-core.workspace = true
tokio = { workspace = true, features = [
"net",
"macros",
"rt",
"rt-multi-thread",
] }