[package] name = "nitrous" version = "0.1.3" authors = ["Fuwn "] 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.16" pretty_env_logger = "0.4.0" human-panic = "1.0.3" # Environment dotenv = "0.15.0" # Web reqwest = { version = "0.11.10", 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"