Skip to content

Commit

Permalink
WIP: rust: Add sysusers code
Browse files Browse the repository at this point in the history
Prep for #49

The main thing this is starting to implement is support for "intercepting"
`useradd` etc.
  • Loading branch information
cgwalters committed Nov 27, 2018
1 parent 854a229 commit 6e4bfea
Show file tree
Hide file tree
Showing 11 changed files with 630 additions and 50 deletions.
1 change: 1 addition & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ glib-sys = "0.6.0"
gio-sys = "0.6.0"
glib = "0.5.0"
tempfile = "3.0.3"
clap = "~2.28"
openat = "0.1.15"
curl = "0.4.14"
c_utf8 = "0.1.0"
Expand Down
3 changes: 3 additions & 0 deletions rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
*/

extern crate c_utf8;
extern crate clap;
extern crate curl;
#[macro_use]
extern crate failure;
Expand Down Expand Up @@ -46,3 +47,5 @@ mod journal;
pub use journal::*;
mod utils;
pub use utils::*;
mod sysusers;
pub use sysusers::*;
Loading

0 comments on commit 6e4bfea

Please sign in to comment.