-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
52 lines (43 loc) · 1.21 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
[package]
name = "oxii_link"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
lto = true
[dev-dependencies]
criterion = "0.4"
[dependencies]
clap = {version = "4.1", features = ["derive"]}
tokio = { version = "1.24", features = ["full"] }
axum = "0.6"
# serde = { version = "1.0", features = ["derive"] }
tower = { version = "0.4", features = ["util", "timeout"] }
tower-http = { version = "0.3", features = ["full"] }
url ="2.3"
rand = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3"
regex = "1.7"
lazy_static = "1.4"
html2text = "0.4"
unicode-width = "0.1"
rkyv = { version = "0.7", features = ["archive_le", "validation"]}
chrono = {version="0.4", features = ["clock", "alloc"]}
memchr = "2.5"
image = "0.24.5"
imageproc = "0.23.0"
stretto = { version = "0.7.1", features = ["sync", "async", "futures"] }
rusttype = "0.9.3"
ctrlc = "3.2.4"
[dependencies.syntect]
version = "5.0.0"
# default-features = false
features = ["default-syntaxes","default-themes","parsing", "html"]
[dependencies.rocksdb]
default-features = false
features = ["lz4", "multi-threaded-cf"]
version = "0.19"