udpt/Cargo.toml
2020-05-14 01:22:59 +03:00

28 lines
868 B
TOML

[package]
name = "udpt-rs"
version = "3.1.0"
authors = ["Naim A. <naim@abda.nl>"]
description = "High performance torrent tracker"
edition = "2018"
[profile.release]
lto = "fat"
[dependencies]
serde = {version = "1.0", features = ["derive"]}
bincode = "1.2"
warp = {version = "0.2", default-features = false}
tokio = {version = "0.2", features = ["macros", "net", "rt-threaded", "fs", "sync", "blocking", "signal"]}
binascii = "0.1"
toml = "0.5"
clap = "2.33"
log = {version = "0.4", features = ["release_max_level_info"]}
fern = "0.6"
serde_json = "1.0"
futures = "0.3"
async-compression = {version = "0.3", features = ["bzip2", "futures-bufread", "futures-write"]}
chrono = "0.4"
[patch.crates-io]
tokio = {git = "https://github.com/naim94a/tokio", branch = "tokio-with-trysendto", features = ["macros", "net", "rt-threaded", "fs", "sync", "blocking", "signal"]}