-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·57 lines (48 loc) · 1.09 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
55
56
57
[package]
name = "wstf"
version = "2.0.1"
authors = ["alxshelepenok <[email protected]>"]
repository = "https://github.com/wtrscape/wstf"
description = "Rust implementation of the WSTF (Waterscape Tick Format) protocol."
license = "MIT"
edition = "2021"
[lib]
name = "wstf"
path = "src/lib.rs"
[[bin]]
name = "wstf-client"
path = "internal/tools/client.rs"
[[bin]]
name = "wstf-concat"
path = "internal/tools/concat.rs"
[[bin]]
name = "wstf-split"
path = "internal/tools/split.rs"
[[bin]]
name = "wstf-bench"
path = "internal/tools/bench.rs"
[dependencies]
clap = "2.34.0"
chrono = "0.4.31"
byteorder = "1.5.0"
arrayvec = "0.7.4"
bitflags = "1.3.2"
serde = "1.0.195"
lazy_static = "1.4.0"
serde_derive = "1.0.195"
serde_json = "1.0.111"
indexmap = "2.1.0"
libc = "0.2.152"
log = "0.4.20"
csv = "1.3.0"
rustc-hash = "2.0.0"
ordered-float = { version = "4.2.2", features = ["serde"]}
alloc_counter = { version = "0.0.4", optional = true }
[dependencies.uuid]
features = ["serde", "v4"]
version = "1.7.0"
[dev-dependencies]
serial_test = "3.0.0"
[features]
default = []
count_alloc = ["alloc_counter"]