-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (40 loc) · 928 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "libslinkynet"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Networking
libp2p = { version = "0.54.1", features = ["full"] }
tokio = { version = "1.42.0", features = ["full"] }
futures = "0.3"
async-trait = "0.1.85"
# Serde
serde = {version = "1.0.0", features = ["derive"]}
serde_json = "1.0"
serde_yaml = "0.9.33"
serde-encrypt = "0.7.0"
# Encoding
base32 = "0.5.0"
hex = "0.4.3"
base58 = "0.2.0"
# Errors
thiserror = "2.0.0"
# Cryptograhpy
libsumatracrypt-rs = "0.6.1"
# Logger
log = "0.4"
pretty_env_logger = "0.5.0"
# HTTP Requests
reqwest = { version = "0.12.12", features = ["json"] }
# Time
chrono = "0.4.39"
# FileSystem
directories = "5.0.1"
# Ring
ring = "0.17.8"
# RAFT
openraft = "0.9.17"
openraft-rocksstore = "0.9.17"
# Zeroize
zeroize = { version= "1.8.1", features=["derive"]}