From ce01d332a0163b2f984d9faaada9c39f43ce9b68 Mon Sep 17 00:00:00 2001 From: Eduardo Trujillo <ed@chromabits.com> Date: Sun, 16 Jan 2022 14:22:22 -0800 Subject: [PATCH] chore(Gitlab CI): Remove unused dependencies in dbus_codegen crate --- Cargo.lock | 31 +------------------------------ dbus_codegen/Cargo.toml | 17 +---------------- 2 files changed, 2 insertions(+), 46 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f07f7e5..01e433f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -117,20 +117,6 @@ dependencies = [ "toml", ] -[[package]] -name = "collective" -version = "0.1.2" -source = "git+ssh://git@gitlab.chromabits.com:30022/etcinit/collective.git?branch=master#91bd46040fe1cdc00b7fa5059ec83f9cbc89c683" -dependencies = [ - "clap", - "figment", - "log", - "pretty_env_logger", - "serde", - "thiserror", - "toml", -] - [[package]] name = "dbus" version = "0.9.3" @@ -385,7 +371,7 @@ dependencies = [ "anyhow", "async-trait", "clap", - "collective 0.1.2 (git+https://gitlab.chromabits.com/etcinit/collective.git?branch=master)", + "collective", "dbus", "dbus-tokio", "futures", @@ -405,22 +391,7 @@ dependencies = [ name = "nm-reactor_dbus_codegen" version = "0.1.0" dependencies = [ - "anyhow", - "async-trait", - "clap", - "collective 0.1.2 (git+ssh://git@gitlab.chromabits.com:30022/etcinit/collective.git?branch=master)", "dbus", - "dbus-tokio", - "futures", - "futures-channel", - "log", - "num-derive", - "num-traits", - "pretty_env_logger", - "serde", - "serde_derive", - "tokio", - "tokio-stream", ] [[package]] diff --git a/dbus_codegen/Cargo.toml b/dbus_codegen/Cargo.toml index 540ac65..9c424a2 100644 --- a/dbus_codegen/Cargo.toml +++ b/dbus_codegen/Cargo.toml @@ -5,19 +5,4 @@ authors = ["Eduardo Trujillo <ed@chromabits.com>"] edition = "2018" [dependencies] -anyhow = "1.0.40" -pretty_env_logger = "0.4.0" -log = "0.4.14" -dbus = {version = "0.9.3", features=["futures"]} -dbus-tokio = "0.7.4" -tokio = {version = "1.0", features=["time", "net", "macros", "rt-multi-thread", "signal", "process", "io-std", "io-util"]} -tokio-stream = "0.1" -futures-channel = "0.3.17" -collective = { git = "ssh://git@gitlab.chromabits.com:30022/etcinit/collective.git", branch = "master" } -clap = "3.0.0-beta.5" -serde = "1.0.115" -serde_derive = "1.0.115" -num-derive = "0.3.3" -num-traits = "0.2" -futures = "0.3.18" -async-trait = "0.1.52" \ No newline at end of file +dbus = {version = "0.9.3", features=["futures"]} \ No newline at end of file -- GitLab