More restructuring
parent: tbd commit: 10b7b7c
1 | [package] |
2 | name = "giterated-issues" |
3 | version = "0.1.0" |
4 | edition = "2021" |
5 | |
6 | [lib] |
7 | name = "giterated_issues" |
8 | path = "src/lib.rs" |
9 | crate-type = ["rlib", "dylib"] |
10 | |
11 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
12 | |
13 | [dependencies] |
14 | giterated-plugin = { path = "../../giterated-plugin" } |
15 | giterated-models = { path = "../../giterated-core/giterated-models" } |
16 | serde = { version = "1.0", features = [ "derive" ]} |
17 | anyhow = "1" |
18 | thiserror = "1" |
19 | sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-native-tls", "postgres", "macros", "migrate", "chrono" ] } |
20 | tokio = { version = "1.32", features = [ "full" ] } |
21 | toml = { version = "0.8" } |
22 | tracing = "0.1" |
23 | tracing-subscriber = "0.3" |
24 | serde_json = "1.0" |