mirror of
https://github.com/phantomzone-org/phantom-zone.git
synced 2026-05-07 03:00:03 -04:00
53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
[package]
|
|
name = "phantom-zone-evaluator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lints.rust]
|
|
missing_debug_implementations = "forbid"
|
|
|
|
[lints.rustdoc]
|
|
broken_intra_doc_links = "forbid"
|
|
|
|
[dependencies]
|
|
auto_impl = { workspace = true }
|
|
itertools = { workspace = true }
|
|
paste = { workspace = true }
|
|
rand = { workspace = true }
|
|
phantom-zone-crypto = { path = "../crypto" }
|
|
phantom-zone-derive = { path = "../derive" }
|
|
phantom-zone-math = { path = "../math" }
|
|
|
|
# serde
|
|
serde = { workspace = true, optional = true, features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
phantom-zone-crypto = { path = "../crypto", features = ["dev"] }
|
|
|
|
# bench
|
|
criterion = { workspace = true }
|
|
|
|
# example
|
|
bincode = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
rayon = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde", "phantom-zone-crypto/serde"]
|
|
dev = ["phantom-zone-crypto/dev"]
|
|
|
|
[[bench]]
|
|
name = "boolean"
|
|
harness = false
|
|
required-features = ["dev"]
|
|
|
|
[[example]]
|
|
name = "single_party"
|
|
required-features = ["dev"]
|
|
|
|
[[example]]
|
|
name = "multi_party"
|
|
required-features = ["serde", "dev"]
|