generated from visoftsolutions/ksox-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (44 loc) · 1023 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
[workspace]
resolver = "2"
members = [
"api",
"core/blockchain",
"core/database",
"core/exchange",
"core/models",
"core/transfer",
]
[workspace.package]
edition = "2021"
version = "0.1.0"
authors = ["The KSOX Team"]
description = "The KSOX Project"
[workspace.dependencies]
async-trait = "0.1"
axum = { version = "0.6", features = [
"headers",
"http2",
"macros",
"multipart",
"tracing",
"ws",
] }
chrono = { version = "0.4", features = ["serde"] }
ethers = "2"
futures = "0.3"
hyper = { version = "0.14", features = ["full"] }
jsonwebtoken = "9.1.0"
once_cell = "1"
proptest = "1"
ring = "0.17"
seq-macro = "0.3"
serde = { version = "1", features = ["derive"] }
surrealdb = { version = "1", features = ["kv-mem"] }
thiserror = "1"
tokio = { version = "1", features = ["full", "tracing"] }
tokio-stream = "0.1"
tower = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"
url = { version = "2", features = ["serde"] }
uuid = { version = "1.5.0", features = ["v4", "fast-rng"] }