forked from Yinet-project/asymmetric-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (21 loc) · 922 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
[package]
name = "asymmetric-crypto"
version = "0.1.0"
authors = ["tiannian <[email protected]>", "xujian009 <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = { version = "0.4", default-features = false }
rand = "0.7.3"
dislog-hal = { git = "https://github.com/Yinet-project/dislog-hal"}
tiny-keccak = { version = "2.0.0", features = ["sha3"] }
libsm = { git = "https://github.com/citahub/libsm"}
serde = { version = "1.0", features = ["derive"] }
dislog-hal-sm2 = { git = "https://github.com/Yinet-project/dislog-hal-sm2"}
[dev-dependencies]
dislog-hal-curve25519 = { git = "https://github.com/Yinet-project/dislog-hal-curve25519"}
byteorder = "1"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-test", "run-cargo-clippy"]