-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (72 loc) · 2.02 KB
/
Cargo.toml
File metadata and controls
78 lines (72 loc) · 2.02 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "fkms"
version = "0.1.0-alpha.1"
edition = "2024"
[lib]
crate-type = ["cdylib", "rlib"]
name = "fkms"
path = "src/lib.rs"
[[bin]]
name = "fkms"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5.38", features = ["derive", "string"] }
k256 = { version = "0.13.4", features = ["ecdsa", "std", "arithmetic"] }
hex = "0.4.3"
prost = "0.13.5"
sha3 = "0.10.8"
tonic = "0.13.1"
tonic-reflection = "0.13.1"
tokio = { version = "1.45.0", features = ["rt", "rt-multi-thread", "macros"] }
aws-sdk-kms = { version = "1.68.0", optional = true }
aws-config = { version = "1.6.2", optional = true }
async-trait = "0.1.88"
serde = { version = "1.0.219", features = ["derive"] }
dirs = "6.0.0"
toml = "0.8.22"
base64 = { version = "0.22.1"}
sea-orm = { version = "1.1.12", optional = true }
http = "1.3.1"
tower = {version = "0.5.2", optional = true}
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
bs58 = "0.5.1"
ripemd = "0.1.3"
thiserror = "2.0.18"
xrpl-rust = "1.0.0"
serde_json = "1.0.149"
alloy-signer-local = { version = "1.5.2", features = ["mnemonic"] }
alloy-primitives = "1.5.4"
alloy-sol-types = "1.5.4"
rlp = "0.6.1"
hex-literal = "1.1.0"
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
serde_bytes = "0.11.19"
serde_with = { version = "3.17.0", features = ["hex"] }
p256 = { version = "0.13", features = ["ecdsa"] }
ecdsa = "0.16.9"
ed25519-dalek = "2"
elliptic-curve = "0.13.8"
bip39 = "2"
hmac = "0.12"
stellar-strkey = "0.0.16"
stellar-xdr = { version = "26.0.0", features = ["curr", "base64"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
base32 = "0.5.1"
cosmrs = "0.22.0"
rand = "0.8.5"
hkdf = "0.12.4"
sha2 = "0.10.8"
x25519-dalek = { version = "2.0.0", features = ["static_secrets"] }
aes = "0.8.4"
cmac = "0.7.2"
ctr = "0.9.0"
[build-dependencies]
tonic-build = { version = "0.13.1", features = ["prost"] }
[features]
default = ["local"]
local = []
all = ["local", "aws", "middleware"]
aws = ["aws-sdk-kms", "aws-config"]
middleware = ["tower", "sea-orm"]