23 lines
706 B
TOML
23 lines
706 B
TOML
[package]
|
|
name = "stftpd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-lock = "3.1.0"
|
|
async-tftp = { path = "vendor/async-tftp-rs" }
|
|
futures = "0.3.29"
|
|
anyhow = "1"
|
|
fern = "0.6.2"
|
|
log = "0.4.20"
|
|
structopt = "0.3"
|
|
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "rt", "signal"] }
|
|
tokio-util = { version = "0.7.10", features = ["io", "io-util", "rt", "compat"] }
|
|
mlua = { version = "0.9.1", features = ["luau-jit", "vendored", "async", "send"] }
|
|
reqwest = { version = "0.11.22", features = ["stream"] }
|
|
listenfd = "1.0.1"
|
|
libc = "0.2.150"
|
|
users = "0.11.0"
|
|
humantime = "2.1.0" |