blob: e98ea6563dc2a50a1eba985a16991e9ce4ea369b (
plain) (
blame)
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
|
[package]
name = "nitrous"
version = "0.1.3"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
readme = "README.rst"
homepage = "https://github.com/fuwn/nitrous"
repository = "https://github.com/fuwn/nitrous"
license = "GPL-3.0-only"
keywords = ["rust", "discord", "nitro", "checker"]
publish = false
[profile.release]
lto = "fat"
codegen-units = 1
[[bench]]
name = "bench"
harness = false
[dependencies]
# CLI
structopt = "0.3.26"
# Utility
rand = "0.8.5"
# Logging
log = "0.4.14"
pretty_env_logger = "0.4.0"
human-panic = "1.0.3"
# Environment
dotenv = "0.15.0"
# Web
reqwest = { version = "0.11.9", features = ["socks"] }
tokio = { version = "1.17.0", features = ["full"] }
# Allocator
[target.'cfg(target_family = "windows")'.dependencies]
mimalloc = { version = "0.1.28", default-features = false }
[target.'cfg(target_family = "unix")'.dependencies]
jemallocator = "0.3.2"
[dev-dependencies]
criterion = "0.3.5"
|