-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 882 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
[package]
name = "teemasterparser"
version = "0.4.0"
authors = ["Edgar <[email protected]>"]
edition = "2021"
description = "Command line tool to parse and analyze data from https://ddnet.tw/stats/master/"
license = "MIT"
repository = "https://github.com/edg-l/teemasterparser"
homepage = "https://github.com/edg-l/teemasterparser"
keywords = ["teeworlds", "ddnet", "parser", "cli"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
[dependencies]
chrono = "0.4.22"
clap = { version = "4.0.22", features = ["derive"] }
color-eyre = "0.6.2"
comfy-table = "6.1.2"
directories = "4.0.1"
itertools = "0.10.5"
plotters = "0.3.4"
regex = "1.7.0"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
tar = "0.4.38"
ureq = "2.5.0"
zstd = "0.11.2"