-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (47 loc) · 1.32 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
53
54
[package]
name = "faf-rust-replayserver"
version = "0.3.2"
authors = ["Igor Kotrasinski <[email protected]>"]
edition = "2018"
[features]
local_db_tests = []
process_tests = []
bench = []
fuzzing_tests = []
[[bin]]
name = "faf_rust_replayserver"
path = "src/main.rs"
[[bin]]
name = "test_sigint"
path = "src/process_test/sigint.rs"
required-features = ["process_tests"]
[[bin]]
name = "test_process_panic"
path = "src/process_test/process_panic.rs"
required-features = ["process_tests"]
[dependencies]
async-compression = { version = "0.3.12", features = ["tokio", "zstd"] }
async-stream = "0.3.3"
config = { version = "0.13.1", features = ["yaml"] }
env_logger = "0.9.0"
faf-replay-parser = "0.5.2"
futures = "0.3.21"
lazy_static = "1.4.0"
log = "0.4.17"
prometheus_exporter = "0.8.4"
rand = "0.8.5"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
signal-hook = "0.3.13"
sqlx = { version = "0.5.13", features = ["runtime-tokio-native-tls", "mysql", "time", "offline"] }
thiserror = "1.0.31"
time = { version = "0.2.27", features = ["std"] }
tokio-stream = { version = "0.1.8", features = ["net"] }
tokio-util = "0.7.1"
weak-table = "0.3.2"
[dependencies.tokio]
version = "1.18.1"
features = ["sync", "net", "io-util", "rt", "macros", "test-util", "time"]
[dev-dependencies]
faux = "0.1.6"
tempfile = "3.3.0"