summaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 10783ba..3fb7bab 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -2,17 +2,26 @@
name = "eyeballs"
version = "0.1.0"
edition = "2021"
+default-run = "eyeballs"
[dependencies]
futures = "0.3.31"
ldap3 = { version = "0.11.5", default-features = false, features = [ "native-tls", "tls", "tls-native", "tokio-native-tls" ] }
+pathdiff = "0.2.3"
+rmp-serde = "1.3"
rocket = { version = "0.5.1", features = ["json", "secrets"] }
rocket_db_pools = { version = "0.2.0", features = ["sqlx_mysql"] }
serde = { version = "1.0", features = ["derive"] }
sqlx = { version = "0.7.0", default-features = false, features = ["macros", "migrate"] }
time = "0.3.34"
+tokio = { version = "1", features = ["process"] }
+users = "0.11.0"
utoipa = { version = "5", features = ["rocket_extras"] }
utoipa-swagger-ui = { version = "8", features = ["rocket", "vendored"], default-features = false }
[dev-dependencies]
stdext = "0.3.3"
+
+[[bin]]
+name = "eyeballs-githook"
+path = "src/githook.rs"