-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (24 loc) · 834 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
[package]
name = "tiny_ed448_goldilocks"
version = "0.1.8"
edition = "2021"
license = "MIT"
keywords = ["ed448-goldilocks", "elliptic-curve", "ed448", "schnorr"]
readme = "README.md"
authors = ["Dustin Ray (Dr. Capybara) <dustinray313@gmail.com>"]
description = "A lean, high performance, pure rust implementation of Ed448-Goldilocks for easy signatures and key exchange."
repository = "https://github.com/drcapybara/tiny_ed448_goldilocks"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.22.0"
crypto-bigint = {version = "0.5.3", features = ["serde"] }
fiat-crypto = "0.2.2"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.115"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[profile.test]
opt-level = 3