38 lines
927 B
TOML
38 lines
927 B
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"] }
|
|
|
|
[[bin]]
|
|
name = "cryptoservice"
|
|
path = "src/cryptoservice.rs"
|
|
|
|
[[bin]]
|
|
name = "ophe"
|
|
path = "src/ophe.rs" |