Seregon/zftpd

Zero-copy FTP/HTTP Daemon compatible with all POSIX systems

C/11.0 KB/No license
ffi/rust/Cargo.toml
zftpd / ffi / rust / Cargo.toml
1[package]
2name = "zftpd"
3version = "1.0.0"
4edition = "2021"
5description = "Safe Rust bindings for the ZFTPD C-Core FFI"
6authors = ["Seregon <seregon@example.com>"]
7 
8[dependencies]
9libc = "0.2"
10 
11[build-dependencies]
12cc = "1.0"
13bindgen = "0.69"
14 
15[[bin]]
16name = "bench"
17path = "benches/bench.rs"
18