-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (52 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
58 lines (52 loc) · 1.43 KB
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
[package]
name = "dazhbog"
version = "1.0.0"
edition = "2021"
authors = ["Kenan Sulayman <kenan@sly.mn>"]
description = "A high-performance, embedded-storage Lumina server compatible with IDA Pro 7.2+."
publish = false
license = "MIT"
[lib]
name = "dazhbog"
path = "src/lib.rs"
[[bin]]
name = "dazhbog"
path = "src/main.rs"
[[bin]]
name = "recover"
path = "src/bin/recover.rs"
[dependencies]
bytes = "1"
hyper = { version = "1", features = ["http1", "http2", "server"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["tokio", "http1", "http2", "server-auto"] }
tokio = { version = "1", features = ["full"] }
tokio-native-tls = "0.3"
native-tls = "0.2"
tokio-rustls = "0.26"
rustls = "0.23"
rustls-pemfile = "2"
rustls-pki-types = "1"
once_cell = "1"
parking_lot = "0.12"
pretty_env_logger = "0.5"
log = "0.4"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
sled = "0.34"
tokio-test = "0.4.4"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tantivy = { version = "0.21", default-features = false, features = ["mmap", "lz4-compression"] }
percent-encoding = "2"
cpp_demangle = "0.4"
msvc-demangler = "0.10"
rustc-demangle = "0.1"
symbolic-demangle = { version = "12", default-features = false, features = ["cpp", "msvc", "rust", "swift"] }
[patch.crates-io]
zstd-safe = { path = "vendor/zstd-safe" }
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"