forked from Enter-tainer/rspb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 956 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
[package]
name = "rspb"
version = "0.1.17"
authors = ["Margatroid <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
warp = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
bytes = "1.1"
futures = { version = "0.3", default-features = false }
sled = {version = "0.34.6", features = ["compression"]}
blake3 = "1.0.0"
chrono = { version = "0.4", features = ["serde"]}
log = "0.4"
flexi_logger = { version = "0.18.1", features = ["colors"]}
syntect = "4.6.0"
lazy_static = "1.4.0"
bincode = "1.3.1"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
num-bigint = "0.4"
mime_guess = "2.0.3"
pulldown-cmark = { version = "0.8", default-features = false, features = ["simd"] }
mimalloc = { version = "*", default-features = false }
[profile.release]
lto = "fat"
codegen-units = 1