Zero-copy FTP/HTTP Daemon compatible with all POSIX systems
| 1 | [package] |
| 2 | name = "zftpd" |
| 3 | version = "1.0.0" |
| 4 | edition = "2021" |
| 5 | description = "Safe Rust bindings for the ZFTPD C-Core FFI" |
| 6 | authors = ["Seregon <seregon@example.com>"] |
| 7 | |
| 8 | [dependencies] |
| 9 | libc = "0.2" |
| 10 | |
| 11 | [build-dependencies] |
| 12 | cc = "1.0" |
| 13 | bindgen = "0.69" |
| 14 | |
| 15 | [[bin]] |
| 16 | name = "bench" |
| 17 | path = "benches/bench.rs" |
| 18 |