-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from LeChatP/develop
v3.0.0-alpha.4
- Loading branch information
Showing
169 changed files
with
43,893 additions
and
54,286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
*.elf | ||
*.ll | ||
*.pyc | ||
*.profraw | ||
|
||
# Linker output | ||
*.ilk | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,20 @@ members = ["xtask", "capable", "capable-common"] | |
|
||
[package] | ||
name = "RootAsRole" | ||
version = "3.0.0-alpha.3" | ||
version = "3.0.0-alpha.4" | ||
rust-version = "1.74.1" | ||
authors = ["Eddie Billoir <[email protected]>"] | ||
edition = "2021" | ||
default-run = "sr" | ||
description = "RootAsRole is an alternative to sudo that uses Linux capabilities and RBAC for scalability." | ||
license-file = "LICENSE" | ||
repository = "https://github.com/LeChatP/RootAsRole" | ||
keywords = ["sudo", "capabilities", "rbac", "linux", "security"] | ||
categories = ["command-line-utilities", "os::linux-apis", "config"] | ||
|
||
[badges] | ||
maintainance ={ status = "actively-maintained", badge = "https://img.shields.io/badge/maintenance-actively%20maintained-brightgreen.svg" } | ||
|
||
|
||
#[features] | ||
#cursive_lib = [ "cursive" ] | ||
|
@@ -22,34 +32,51 @@ name = "chsr" | |
path = "src/chsr/main.rs" | ||
|
||
[build-dependencies] | ||
reqwest = { version = "0.11.18", features = ["blocking", "json"] } | ||
reqwest = { version = "0.12.4", features = ["blocking", "json"] } | ||
pcre2 = "0.2.4" | ||
regex = "1.9.1" | ||
serde = { version = "1.0.185" } | ||
serde_json = "1.0.113" | ||
|
||
[dependencies] | ||
tracing = "0.1.37" | ||
tracing-subscriber = "0.3.16" | ||
libc = "0.2.139" | ||
semver = "1.0.18" | ||
nix = { version = "0.26.2", features = ["user"] } | ||
tracing = "0.1.40" | ||
tracing-subscriber = "0.3.18" | ||
libc = "0.2.153" | ||
strum = { version = "0.26.2", features = ["derive"] } | ||
semver = { version = "1.0.22", features = ["serde"] } | ||
nix = { version = "0.28.0", features = ["user","process", "signal", "fs"] } | ||
#sudoers-reader = { path = "sudoers-reader" } | ||
clap = { version = "4.3.0", features = ["derive"] } | ||
cursive = { version = "0.20.0", default-features = false, features = ["termion-backend"] } | ||
capctl = "0.2.3" | ||
pcre2 = "0.2.4" | ||
chrono = "0.4.26" | ||
sxd-document = "0.3.2" | ||
sxd-xpath = "0.4.2" | ||
serde = "1.0.185" | ||
ciborium = "0.2.1" | ||
clap = { version = "4.5.3", features = ["derive"] } | ||
capctl = "0.2.4" | ||
pcre2 = "0.2.6" | ||
serde = { version = "1.0.197", features=["rc"] } | ||
serde_json = "1.0.114" | ||
ciborium = "0.2.2" | ||
glob = "0.3.1" | ||
pam-client = { version = "0.5.0" } | ||
bitflags = { version = "2.4.0" } | ||
pam-client = { version = "0.5.0", git = "https://gitlab.com/LeChatP/rust-pam-client.git" } | ||
bitflags = { version = "2.5.0" } | ||
shell-words = "1.1.0" | ||
syslog-tracing = "0.2.0" | ||
syslog-tracing = "0.3.0" | ||
linked_hash_set = { version = "0.1.4" } | ||
derivative = "2.2.0" | ||
sha2 = "0.10.8" | ||
sha1 = "0.10.6" | ||
md5 = "0.7.0" | ||
chrono = "0.4.37" | ||
pty-process = "0.4.0" | ||
once_cell = "1.19.0" | ||
crossterm = "0.27.0" | ||
pest = "2.7.8" | ||
pest_derive = "2.7.8" | ||
phf = { version = "0.11.2", features = ["macros"] } | ||
const_format = "0.2.32" | ||
rpassword = "7.3.1" | ||
|
||
[dev-dependencies] | ||
env_logger = "*" | ||
test-log = { version = "0.2.12", features = ["trace"] } | ||
tracing = "0.1.37" | ||
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["env-filter", "fmt"] } | ||
pest-test-gen = "0.1.7" | ||
pest-test = "0.1.6" | ||
lazy_static = "1.4.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.