Remove unused Cargo deps, fix unnecessary path qualification, revert npm package-lock.json changes

Co-authored-by: bybrooklyn <211590674+bybrooklyn@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-05 22:56:05 +00:00
parent ec1add24e6
commit 94c25b074c
4 changed files with 693 additions and 2655 deletions

67
Cargo.lock generated
View File

@@ -36,7 +36,6 @@ dependencies = [
"clap",
"futures",
"inquire",
"log",
"mime_guess",
"notify",
"num_cpus",
@@ -46,17 +45,13 @@ dependencies = [
"rust-embed",
"serde",
"serde_json",
"serde_urlencoded",
"sha2",
"sqlx",
"subprocess",
"sysinfo",
"thiserror 2.0.17",
"tokio",
"tokio-stream",
"toml",
"tower 0.4.13",
"tower-http 0.5.2",
"tracing",
"tracing-subscriber",
"uuid",
@@ -207,7 +202,7 @@ dependencies = [
"serde_urlencoded",
"sync_wrapper",
"tokio",
"tower 0.5.2",
"tower",
"tower-layer",
"tower-service",
"tracing",
@@ -236,7 +231,7 @@ dependencies = [
"serde_core",
"sync_wrapper",
"tokio",
"tower 0.5.2",
"tower",
"tower-layer",
"tower-service",
]
@@ -964,12 +959,6 @@ dependencies = [
"pin-project-lite",
]
[[package]]
name = "http-range-header"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
[[package]]
name = "httparse"
version = "1.10.1"
@@ -1891,8 +1880,8 @@ dependencies = [
"sync_wrapper",
"tokio",
"tokio-rustls",
"tower 0.5.2",
"tower-http 0.6.8",
"tower",
"tower-http",
"tower-service",
"url",
"wasm-bindgen",
@@ -2476,16 +2465,6 @@ version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "subprocess"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "subtle"
version = "2.6.1"
@@ -2739,17 +2718,6 @@ version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower"
version = "0.5.2"
@@ -2766,31 +2734,6 @@ dependencies = [
"tracing",
]
[[package]]
name = "tower-http"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
dependencies = [
"bitflags 2.10.0",
"bytes",
"futures-util",
"http",
"http-body",
"http-body-util",
"http-range-header",
"httpdate",
"mime",
"mime_guess",
"percent-encoding",
"pin-project-lite",
"tokio",
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-http"
version = "0.6.8"
@@ -2804,7 +2747,7 @@ dependencies = [
"http-body",
"iri-string",
"pin-project-lite",
"tower 0.5.2",
"tower",
"tower-layer",
"tower-service",
]

View File

@@ -25,7 +25,6 @@ walkdir = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
subprocess = { version = "=0.2.9" }
sqlx = { version = "0.7", features = ["runtime-tokio", "sqlite", "macros", "chrono", "migrate"] }
chrono = { version = "0.4", features = ["serde"] }
num_cpus = "1.16"
@@ -33,9 +32,6 @@ inquire = { version = "0.7" }
futures = { version = "0.3" }
toml = "0.8"
axum = { version = "0.7", features = ["macros"] }
tower = { version = "0.4" }
tower-http = { version = "0.5", features = ["fs"] }
log = "0.4"
rayon = "1.10"
tokio-stream = { version = "0.1", features = ["sync"] }
thiserror = "2.0.17"
@@ -46,7 +42,6 @@ mime_guess = "2.0"
async-trait = "0.1"
argon2 = "0.5.3"
rand = "0.8"
serde_urlencoded = "0.7.1"
sysinfo = "0.32"
uuid = { version = "1", features = ["v4"] }
sha2 = "0.10"

View File

@@ -472,7 +472,7 @@ async fn run() -> Result<()> {
info!("Config file changed. Reloading...");
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
match alchemist::config::Config::load(std::path::Path::new(
match config::Config::load(std::path::Path::new(
"config.toml",
)) {
Ok(new_config) => {

3274
web/package-lock.json generated

File diff suppressed because it is too large Load Diff