blob: 0f6760e5bdf2ffcac88e0df069e89eb4173ea131 (
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
|
[package]
name = "nitrous"
version = "0.1.1"
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
[dependencies]
# CLI
structopt = "0.3.21"
# Utility
rand = "0.8.3"
# 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.3", features = ["socks"] }
tokio = { version = "1.6.0", features = ["full"] }
# Allocator
[target.'cfg(target_family = "windows")'.dependencies]
mimalloc = { version = "0.1.25", default-features = false }
[target.'cfg(target_family = "unix")'.dependencies]
jemallocator = "0.3.2"
|