-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
40 lines (34 loc) · 1.06 KB
/
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
35
36
37
38
39
40
[package]
authors =["Pluto Authors"]
description="""ronkathon"""
edition ="2021"
license ="Apache2.0 OR MIT"
name ="ronkathon"
repository ="https://github.com/pluto/ronkathon"
version = "0.1.0"
exclude =["CHANGELOG.md"]
[dependencies]
rand ="0.8.5"
itertools="0.13.0"
hex ="0.4.3"
[dev-dependencies]
rstest ="0.23.0"
pretty_assertions ="1.4.1"
sha2 ="0.10.8"
ark-ff ={ version="^0.4.0", features=["std"] }
ark-crypto-primitives={ version="0.4.0", features=["sponge"] }
des ="0.8.1"
chacha20 ="0.9.1"
[patch.crates-io]
ark-ff ={ git="https://github.com/arkworks-rs/algebra/" }
ark-ec ={ git="https://github.com/arkworks-rs/algebra/" }
ark-poly ={ git="https://github.com/arkworks-rs/algebra/" }
ark-serialize={ git="https://github.com/arkworks-rs/algebra/" }
ark-std ={ git="https://github.com/arkworks-rs/std/" }
[[bin]]
name="hmac_sha256_bin"
path="src/hmac/bin/hmac_sha256_bin.rs"
[[example]]
name="aes_chained_cbc"
[[example]]
name="symmetric_group"