-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (61 loc) · 1.65 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
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
[package]
name = "stem"
version = "0.4.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"stemlib" # stemlib has separate Cargo.toml
]
[dependencies]
crypter = { path = "crypter", name = "crypter" }
stemlib = { path = "stemlib", name = "stemlib"}
stemplugins = { path = "stemplugins", name = "stemplugins"}
salvo = { version = "0.74.2", features = ["full"] }
actix = "0.13.5"
actix-web = "4"
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1" }
reqwest = { version = "0.12", features = ["json", "blocking", "stream", "multipart"] }
tracing = "0.1"
tracing-subscriber = "0.3"
serde = {version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
redis-async = "0.17"
sha2 = "0.10"
is_type = "0.2.1"
rayon = "1.10.0"
rand = "0.8"
futures = "0.3"
deadpool-lapin = { version = "0.12.1", features = ["serde", "rt_tokio_1"] }
deadpool-redis = "0.18.0"
futures-util = "0.3"
once_cell = "1"
uuid = { version = "1", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
dotenv = "0.15"
pretty_env_logger = "0.5.0"
sanitize-filename = "0.5"
log4rs = "1.3.0"
env_logger = "0.11"
bytes = { version = "1", features = ["serde"] }
wallexerr = "0.3.3"
hex = "0.4"
clap = { version = "4.5.20", features = ["derive"] }
thiserror = "2.0.3"
percentage = "0.1.0"
themis = "0.14.0"
base58 = "0.2.0"
rand_chacha = "0.3"
chacha20 = "0.9"
indexmap = "2.6"
wasmer = "5.0.1"
wasmer-wasi = "3.1.1"
mmap = "0.1.1"
[[bin]]
name = "stem"
path = "src/main.rs"
[[bin]]
name = "playground"
path = "src/playground/app.rs"