udpt/Cargo.toml

28 lines
868 B
TOML
Raw Normal View History

2018-06-08 16:35:22 +01:00
[package]
name = "udpt-rs"
2020-05-07 02:25:54 +01:00
version = "3.1.0"
authors = ["Naim A. <naim@abda.nl>"]
2018-06-08 16:35:22 +01:00
description = "High performance torrent tracker"
edition = "2018"
2018-06-08 16:35:22 +01:00
2018-06-11 20:46:57 +01:00
[profile.release]
lto = "fat"
2018-06-11 20:46:57 +01:00
2018-06-08 16:35:22 +01:00
[dependencies]
serde = {version = "1.0", features = ["derive"]}
bincode = "1.2"
2020-05-06 01:06:14 +01:00
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"
2020-05-13 20:59:29 +01:00
log = {version = "0.4", features = ["release_max_level_info"]}
fern = "0.6"
serde_json = "1.0"
2020-05-07 00:53:25 +01:00
futures = "0.3"
async-compression = {version = "0.3", features = ["bzip2", "futures-bufread", "futures-write"]}
2020-05-13 20:59:29 +01:00
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"]}