forked from trifectatechfoundation/sudo-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (36 loc) · 763 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
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "sudo-rs"
description = "A memory safe implementation of sudo and su."
version = "0.2.1"
license = "Apache-2.0 OR MIT"
edition = "2021"
repository = "https://github.com/memorysafety/sudo-rs"
homepage = "https://github.com/memorysafety/sudo-rs"
publish = true
categories = ["command-line-interface"]
rust-version = "1.70"
default-run = "sudo"
[lib]
path = "src/lib.rs"
[[bin]]
name = "sudo"
path = "bin/sudo.rs"
[[bin]]
name = "su"
path = "bin/su.rs"
[[bin]]
name = "visudo"
path = "bin/visudo.rs"
[dependencies]
libc = "0.2.127"
glob = "0.3.0"
log = { version = "0.4.11", features = ["std"] }
[dev-dependencies]
pretty_assertions = "1.2.1"
[features]
default = []
dev = []
[profile.release]
strip = "symbols"
lto = true
opt-level = "s"