-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 805 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (23 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[workspace]
resolver = "2"
members = ["dstu4145-rust", "poly_algebra", "rust-ec", "examples"]
description = "Rust-native library for calulating specific Dstu 4145-2002 sign."
readme = "Readme.md"
rust-version = "1.81.0"
authors = ["Illia Kripaka"]
repository = "https://github.com/ikripaka/dstu4145-rust/"
keywords = ["cryptography", "dstu4145", "digital-signature"]
categories = ["cryptography"]
[workspace.dependencies]
poly_algebra = { path = "./poly_algebra" }
rust-ec = { path = "./rust-ec" }
num-traits = "0.2"
num-bigint = "0.4.6"
signature = { version = "2.2.0", features = ["rand_core", "digest", "std"] }
thiserror = "1.0.64"
rand_chacha = { version = "0.3.1" }
rand_core = { version = "0.6.4", features = ["getrandom"] }
sha3 = "0.10.8"
proptest = "1.5.0"
hex-literal = "0.4.1"
bytes = "1.7.2"