Unified stack `GetValue` implementation
parent: tbd commit: 325f5af
1 | [package] |
2 | name = "giterated-daemon" |
3 | version = "0.0.6" |
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.0.188", 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 | semver = {version = "*", features = ["serde"]} |
25 | giterated-models = { path = "../giterated-models" } |
26 | giterated-api = { path = "../../giterated-api" } |
27 | giterated-stack = { path = "../giterated-stack" } |
28 | deadpool = "*" |
29 | bincode = "*" |
30 | tokio-util = {version = "0.7.9", features = ["rt"]} |
31 | |
32 | toml = { version = "0.7" } |
33 | |
34 | chrono = { version = "0.4", features = [ "serde" ] } |
35 | async-trait = "0.1" |
36 | |
37 | # Git backend |
38 | git2 = "0.17" |
39 | thiserror = "1" |
40 | anyhow = "1" |
41 | sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-native-tls", "postgres", "macros", "migrate", "chrono" ] } |
42 | secrecy = "0.8.0" |
43 | |
44 | #uuid = { version = "1.4", features = [ "v4", "serde" ] } |