2024-01-28 19:38:09 +01:00

53 lines
1.3 KiB
TOML

[package]
name = "ophe"
version = "0.1.0"
authors = ["fritz <fritz.schmid@fau.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bls12_381 = {features =[ "groups","pairings","alloc"],git="https://github.com/Kradxn/bls12_381"}
#bls12_381 = "*"
rand = "*"
bencher = "*"
bit-vec = "*"
lazy_static = "*"
group = "0.12.0"
rand_core= {version = "0.6", features = ["getrandom"]}
bitvec = "=0.22.0"
sha2 = "*"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
time = "*"
rocket = "0.5.0-rc.1"
rayon = "*"
base64 = "*"
serde_with = { version = "*", features = ["base64","default"] }
futures = "*"
reqwest ={ version = "*", features = ["json"]}
rocket_okapi = { version = "0.8.0-alpha-1", features = ["swagger", "rapidoc"] }
arkworks-mimc = { version = "0.3.0", features = ["mimc-7-91-bls12-381","r1cs"] }
ark-ff = { version = "^0.3.0", default-features = false }
ark-bls12-381 = "0.3.0"
ark-bls12-377 = "0.3.0"
ark-crypto-primitives = "0.3.0"
ark-std = "0.3.0"
ark-relations = "0.3.0"
ark-r1cs-std = "0.3.0"
ark-groth16 = "0.3.0"
ark-serialize = "0.3.0"
ark-ec = "0.3.0"
subtle = "*"
# Fixes compilation on windows
tokio = "1.28.0"
[[bin]]
name = "cryptoservice"
path = "src/cryptoservice.rs"
[[bin]]
name = "ophe"
path = "src/ophe.rs"