Implement String Namespace Plugins Support
The current API is subject to change, however, as the current feature set is a bit limited. However, you can test out the existing support by installing the new git plugin, which is recorded at the bottom of the newly-updated README.
Showing
- Cargo.lock 22 additions, 0 deletionsCargo.lock
- Cargo.toml 2 additions, 0 deletionsCargo.toml
- README.md 62 additions, 587 deletionsREADME.md
- src/main.rs 1 addition, 0 deletionssrc/main.rs
- src/shell/plugins/library_iter/mod.rs 44 additions, 0 deletionssrc/shell/plugins/library_iter/mod.rs
- src/shell/plugins/mod.rs 27 additions, 0 deletionssrc/shell/plugins/mod.rs
- src/shell/plugins/namespaces/mod.rs 9 additions, 0 deletionssrc/shell/plugins/namespaces/mod.rs
- src/shell/plugins/namespaces/redox.rs 50 additions, 0 deletionssrc/shell/plugins/namespaces/redox.rs
- src/shell/plugins/namespaces/unix.rs 162 additions, 0 deletionssrc/shell/plugins/namespaces/unix.rs
- src/shell/variables.rs 27 additions, 17 deletionssrc/shell/variables.rs
... | ... | @@ -62,6 +62,8 @@ libc = "0.2" |
nix = "0.8" | ||
# Obtains user directories | ||
users = "0.5.1" | ||
# Enables loading plugins | ||
libloading = "0.4" | ||
[build-dependencies] | ||
ansi_term = "0.9" | ||
... | ... |
This diff is collapsed.
src/shell/plugins/library_iter/mod.rs
0 → 100644
src/shell/plugins/mod.rs
0 → 100644
src/shell/plugins/namespaces/mod.rs
0 → 100644
src/shell/plugins/namespaces/redox.rs
0 → 100644
src/shell/plugins/namespaces/unix.rs
0 → 100644
Please register or sign in to comment