diff --git a/Cargo.lock b/Cargo.lock index d1b1fb9..b1488ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,7 +414,6 @@ dependencies = [ "gix-features", "jsonwebtoken", "octocrab", - "reqwest", "thiserror", "tokio", "tracing", @@ -547,7 +546,6 @@ dependencies = [ "dialoguer", "dirs-next", "eyre", - "reqwest", "serde", "serde_json", "tokio", @@ -578,8 +576,6 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" name = "common" version = "0.1.0" dependencies = [ - "anyhow", - "chrono", "serde", ] @@ -783,7 +779,7 @@ dependencies = [ [[package]] name = "dickens" version = "0.1.0" -source = "git+https://github.com/AOSC-Dev/dickens.git#44f8e3453244ec9964fd1c541fea230d2d9ec4d2" +source = "git+https://github.com/AOSC-Dev/dickens.git#3009ed0489db056b7ce05f89782c49fa05f32e6b" dependencies = [ "abbs-meta-apml 0.1.0 (git+https://github.com/AOSC-Dev/abbs-meta-rs)", "anyhow", @@ -3308,7 +3304,6 @@ dependencies = [ "dickens", "diesel", "dotenv", - "env_logger", "futures", "jsonwebtoken", "octocrab", @@ -4578,7 +4573,6 @@ dependencies = [ "dotenv", "env_logger", "fs2", - "futures", "gethostname", "log", "num_cpus", diff --git a/buildit-utils/Cargo.toml b/buildit-utils/Cargo.toml index 13f0c11..e918f5e 100644 --- a/buildit-utils/Cargo.toml +++ b/buildit-utils/Cargo.toml @@ -15,7 +15,6 @@ gix-features = { version = "0.38.0", optional = true } walkdir = "2.4.0" abbs-meta-apml = { git = "https://github.com/AOSC-Dev/abbs-meta-rs", package = "abbs-meta-apml", rev = "4a592937b44e8bb93103edd34eff384169a3248a" } fancy-regex = "0.13" -reqwest = "0.11.24" thiserror ="1.0" tracing = "0.1.40" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 33890d3..60f1830 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,7 +11,6 @@ tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread", "fs"] } eyre = "0.6" clap = { version = "4.5.1", features = ["derive", "env"] } dirs-next = "2.0.0" -reqwest = { version = "0.11", features = ["json"] } dialoguer = "0.11.0" serde_json = "1.0.113" serde = { version = "1.0", features = ["derive"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index c7cf05e..6f474dc 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -6,6 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.80" -chrono = { version = "0.4.34", features = ["serde"] } serde = { version = "1.0.196", features = ["derive"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index dec197b..244c90a 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -11,7 +11,6 @@ chrono = "0.4.34" clap = { version = "4.5.1", features = ["derive", "env"] } common = { path = "../common" } dotenv = "0.15.0" -env_logger = "0.11.2" futures = "0.3.30" octocrab = "0.35.0" once_cell = "1.19.0" diff --git a/worker/Cargo.toml b/worker/Cargo.toml index 545a4a7..10ecd3b 100644 --- a/worker/Cargo.toml +++ b/worker/Cargo.toml @@ -14,7 +14,6 @@ common = { path = "../common" } dotenv = "0.15.0" env_logger = "0.11.2" fs2 = "0.4.3" -futures = "0.3.30" gethostname = "0.4.3" log = "0.4.20" num_cpus = "1.16.0"