JavaScript is disabled, refresh for a better experience. ambee/giterated

ambee/giterated

Git repository hosting, collaboration, and discovery for the Fediverse.

Huge refactor to prep for moving the daemon over to the plugin architecture

Amber - ⁨2⁩ years ago

parent: tbd commit: ⁨5df753c

⁨giterated-plugins/giterated-backend/Cargo.toml⁩ - ⁨695⁩ bytes
Raw
1 [package]
2 name = "giterated-backend"
3 version = "0.1.0"
4 edition = "2021"
5
6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8 [dependencies]
9 giterated-plugin = { path = "../giterated-plugin" }
10 giterated-models = { path = "../../giterated-models" }
11 serde = { version = "1.0", features = [ "derive" ]}
12 anyhow = "1"
13 thiserror = "1"
14 sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-native-tls", "postgres", "macros", "migrate", "chrono" ] }
15 tokio = { version = "1.32", features = [ "full" ] }
16 giterated-plugin-sys = { path = "../giterated-plugin-sys" }
17 toml = { version = "0.7" }
18 tracing = "0.1"
19 tracing-subscriber = "0.3"
20 serde_json = "1.0"