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

ambee/giterated

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

Add docs

Amber - ⁨2⁩ years ago

parent: tbd commit: ⁨51aad53

⁨Cargo.toml⁩ - ⁨917⁩ bytes
Raw
1 [package]
2 name = "giterated-daemon"
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 tokio-tungstenite = "*"
10 tokio = { version = "1.32.0", features = [ "full" ] }
11 tracing = "*"
12 futures-util = "*"
13 serde = { version = "1", features = [ "derive" ]}
14 serde_json = "1.0"
15 tracing-subscriber = "0.3"
16 base64 = "0.21.3"
17 jsonwebtoken = { version = "*", features = ["use_pem"]}
18 log = "*"
19 rand = "*"
20 rsa = {version = "0.9", features = ["sha2"]}
21 reqwest = "*"
22 argon2 = "*"
23 aes-gcm = "0.10.2"
24
25 toml = { version = "0.7" }
26
27 chrono = { version = "0.4", features = [ "serde" ] }
28 async-trait = "0.1"
29
30 # Git backend
31 git2 = "0.17"
32 thiserror = "1"
33 anyhow = "1"
34 sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-native-tls", "postgres", "macros", "migrate", "chrono" ] }
35
36 #uuid = { version = "1.4", features = [ "v4", "serde" ] }