diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-01-26 21:58:42 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-01-26 21:58:42 +0100 |
| commit | 9e80b8cd1e44fcf863d926055d9fa458db46e0d3 (patch) | |
| tree | 1fd262ac79127e60d91f9e7efac9702ec3058cdb /server/Cargo.toml | |
| parent | 42334c32226f0ff3248d6d0c7641b7170ca962ce (diff) | |
Add basic git support
Pushing a commit to a new branch creates a review.
Each project has its own git directory, with githooks installed
that talkes with server process via unix sockets.
Diffstat (limited to 'server/Cargo.toml')
| -rw-r--r-- | server/Cargo.toml | 9 |
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" |
