-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (31 loc) · 816 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
[package]
name = "snap_rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"proc_macros",
]
[dependencies]
# Crates
snap_rs_proc_macros = { path = "proc_macros" }
# Logging
log = "0.4"
fern = {version = "0.6", features = ["colored"]}
chrono = "0.4"
# Config
toml = "0.5"
serde = {version = "1.0", features = ["derive"]}
serde-toml-merge = "0.3"
lazy_static = "1.4" # TODO: Remove this once LazyLock is in stable
# Network
slotmap = "1.0"
paste = "1.0"
flate2 = { version = "1.0", features = ["zlib-ng"], default-features = false }
libz-ng-sys = { version = "1.1", default-features = false }
tokio = {version = "1.21", features = ["full"]}
futures = "0.3"
# Server
serde_json = "1.0"
ctrlc = "3.2"