Update dependencies
parent: tbd commit: 931e8eb
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.8" } |
18 | tracing = "0.1" |
19 | tracing-subscriber = "0.3" |
20 | serde_json = "1.0" |