-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (28 loc) · 826 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "rtftp"
version = "1.1.2"
authors = ["Reiner Herrmann <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
description = "client and server implementation of the Trivial File Transfer Protocol"
repository = "https://github.com/reinerh/rtftp/"
keywords = ["tftp", "file-transfer"]
categories = ["command-line-utilities", "network-programming"]
exclude = [".github/*"]
[profile.release]
lto = true
panic = 'abort'
[dependencies]
nix = { version = "0.25.0", default-features = false, features = ["fs", "user"] }
getopts = "0.2"
threadpool = "1.0"
landlock = { git = "https://github.com/landlock-lsm/rust-landlock.git", optional = true }
[features]
default = ["landlock"]
landlock = ["dep:landlock"]
[[bin]]
name = "rtftpd"
path = "src/tftpd.rs"
[[bin]]
name = "rtftpc"
path = "src/tftpc.rs"