diff --git a/.gitignore b/.gitignore index d0160f2..6341530 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target /.direnv/ +/result diff --git a/Cargo.lock b/Cargo.lock index 55f3a72..0215ecf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,17 +153,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" -[[package]] -name = "dbus" -version = "0.9.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" -dependencies = [ - "libc", - "libdbus-sys", - "winapi", -] - [[package]] name = "downcast-rs" version = "1.2.1" @@ -410,15 +399,6 @@ version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" -[[package]] -name = "libdbus-sys" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" -dependencies = [ - "pkg-config", -] - [[package]] name = "linux-raw-sys" version = "0.4.15" @@ -602,7 +582,6 @@ name = "riverigilo" version = "0.1.0" dependencies = [ "color-eyre", - "dbus", "eyre", "futures", "oneshot", diff --git a/Cargo.toml b/Cargo.toml index fcc387f..cb5d88f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,6 @@ edition = "2021" [dependencies] color-eyre = "0.6.3" -dbus = "0.9.7" eyre = "0.6.12" futures = "0.3.31" oneshot = "0.1.11" diff --git a/flake.nix b/flake.nix index 1eb4d5b..5152a69 100644 --- a/flake.nix +++ b/flake.nix @@ -21,11 +21,5 @@ ]; systems = [ "x86_64-linux" "aarch64-linux" ]; crane.source = ./.; - perSystem = { pkgs, lib, ... }: { - crane.craneArgs = { - nativeBuildInputs = [pkgs.pkg-config]; - buildInputs = with pkgs; [ dbus ]; - }; - }; }; }