| 1 |
[package] |
| 2 |
name = "goingson-core" |
| 3 |
version.workspace = true |
| 4 |
edition.workspace = true |
| 5 |
|
| 6 |
[features] |
| 7 |
sqlx-sqlite = ["dep:sqlx"] |
| 8 |
|
| 9 |
[dependencies] |
| 10 |
chrono = { workspace = true } |
| 11 |
uuid = { workspace = true } |
| 12 |
serde = { workspace = true } |
| 13 |
serde_json = { workspace = true } |
| 14 |
async-trait = { workspace = true } |
| 15 |
thiserror = { workspace = true } |
| 16 |
strum = { workspace = true } |
| 17 |
strum_macros = { workspace = true } |
| 18 |
sqlx = { workspace = true, features = ["sqlite", "uuid"], optional = true } |
| 19 |
tagtree = { workspace = true } |
| 20 |
sha2 = { workspace = true } |
| 21 |
|