Remove unused dependencies from server (#1694)

* Remove unused dependencies from Cargo.lock

* Remove unused dependencies from Cargo.toml
This commit is contained in:
Julian Braha 2023-10-29 01:59:16 -04:00 committed by GitHub
parent 3d3f333b64
commit 49ab0afcba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 4 deletions

2
Cargo.lock generated
View file

@ -7006,14 +7006,12 @@ name = "sd-server"
version = "0.1.0"
dependencies = [
"axum",
"ctrlc",
"http",
"include_dir",
"mime_guess",
"rspc",
"sd-core",
"tokio",
"tower-http",
"tracing 0.2.0",
]

View file

@ -18,8 +18,6 @@ rspc = { workspace = true, features = ["axum"] }
axum = "0.6.20"
tokio = { workspace = true, features = ["sync", "rt-multi-thread", "signal"] }
tracing = { workspace = true }
ctrlc = "3.4.1"
http = "0.2.9"
tower-http = { version = "0.4.4", features = ["fs"] }
include_dir = "0.7.3"
mime_guess = "2.0.4"