-
Notifications
You must be signed in to change notification settings - Fork 92
/
Cargo.toml
34 lines (30 loc) · 932 Bytes
/
Cargo.toml
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
[package]
name = "powdr-number"
description = "powdr finite field definitions"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
ark-bn254 = { version = "0.4.0", default-features = false, features = [
"scalar_field",
] }
ark-ff = "0.4.2"
ark-serialize = "0.4.2"
num-bigint = { version = "0.4.3", features = ["serde"] }
num-traits = "0.2.15"
csv = "1.3"
serde = { version = "1.0", default-features = false, features = ["alloc", "derive", "rc"] }
serde_with = "3.6.1"
schemars = { version = "0.8.16", features = ["preserve_order"]}
ibig = { version = "0.3.6", features = ["serde"]}
serde_cbor = "0.11.2"
derive_more = "0.99.17"
[dev-dependencies]
test-log = "0.2.12"
env_logger = "0.10.0"
[package.metadata.cargo-udeps.ignore]
development = ["env_logger"]
[lints.clippy]
uninlined_format_args = "deny"