-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 1.03 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
[package]
name = "bucky-crypto"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/buckyos/bucky-crypto.git"
license-file = "LICENSE"
description = "Bucky crypto library"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = "1.12.0"
sha2 = "0.8"
x509-cert = { version = "0.2.5", features = ["builder"], optional = true }
rsa = { version = "0.9.6", features = ["sha2"] }
generic-array = { version = '0.12', default-features = false, features = ['serde'] }
rand = '0.8.5'
libc = "0.2.153"
libsecp256k1 = "0.7.1"
log = "0.4.21"
base58 = '0.2.0'
async-trait = "0.1.80"
bucky-raw-codec = {git="https://github.com/buckyos/bucky-raw-codec.git", features = ["derive"]}
bucky-error = {git = "https://github.com/buckyos/bucky-error.git", features = ["rsa"]}
bucky-time = {git = "https://github.com/buckyos/bucky-time.git"}
aes = '=0.7'
block-modes = '=0.8'
ecies = {version = "0.2", default-features = false, features = ["pure"]}
hex = "0.4.3"
[features]
x509 = ["x509-cert"]