summaryrefslogtreecommitdiff
path: root/rust/schist_backend
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-11-17 13:06:56 +0000
committerJoe Carstairs <me@joeac.net>2024-11-17 13:06:56 +0000
commit3a4b4a28b0d3db61ea5e32b69f544bb1e261fec2 (patch)
treedc02399238013ef9da0f94e7a3b5e09e0e9135b0 /rust/schist_backend
parent19f5040910ad297ecd618f67675cd2fa00771bdd (diff)
Removes unneeded dependencies
Diffstat (limited to 'rust/schist_backend')
-rw-r--r--rust/schist_backend/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/rust/schist_backend/Cargo.toml b/rust/schist_backend/Cargo.toml
index 2b4f843..1faa9d8 100644
--- a/rust/schist_backend/Cargo.toml
+++ b/rust/schist_backend/Cargo.toml
@@ -8,10 +8,9 @@ chrono = { workspace = true, features = ["serde"] }
cfg-if = { workspace = true }
diesel = { workspace = true, features = ["sqlite"] }
diesel_migrations = { workspace = true }
-dotenvy = { workspace = true }
+libsqlite3-sys = { workspace = true, features = ["bundled"] }
rocket = { workspace = true, features = ["json"] }
rocket_sync_db_pools = { workspace = true, features = ["diesel_sqlite_pool"] }
-rusqlite = { workspace = true, features = ["bundled"] }
schist_models = { path = "../schist_models" }
schist_queries = { path = "../schist_queries" }
schist_schema = { path = "../schist_schema" }