Nushell plugin for interacting with D-Bus
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Release 0.3.0: update to nushell 0.90.1

+4 -3
+3 -3
Cargo.toml
··· 1 1 [package] 2 2 name = "nu_plugin_dbus" 3 - version = "0.2.2" 3 + version = "0.3.0" 4 4 edition = "2021" 5 5 6 6 description = "Nushell plugin for communicating with D-Bus" ··· 14 14 15 15 [dependencies] 16 16 dbus = "0.9.7" 17 - nu-plugin = "0.89.0" 18 - nu-protocol = { version = "0.89.0", features = ["plugin"] } 17 + nu-plugin = "0.90.1" 18 + nu-protocol = { version = "0.90.1", features = ["plugin"] } 19 19 serde = { version = "1.0.196", features = ["derive"] } 20 20 serde-xml-rs = "0.6.0"
+1
src/main.rs
··· 236 236 fn run( 237 237 &mut self, 238 238 name: &str, 239 + _config: &Option<Value>, 239 240 call: &EvaluatedCall, 240 241 _input: &Value, 241 242 ) -> Result<Value, LabeledError> {