| 1 |
[package] |
| 2 |
name = "go-mcp" |
| 3 |
version.workspace = true |
| 4 |
edition.workspace = true |
| 5 |
|
| 6 |
[lib] |
| 7 |
name = "go_mcp" |
| 8 |
path = "src/lib.rs" |
| 9 |
|
| 10 |
[[bin]] |
| 11 |
name = "go-mcp" |
| 12 |
path = "src/main.rs" |
| 13 |
|
| 14 |
[dependencies] |
| 15 |
goingson-core = { workspace = true, features = ["sqlx-sqlite"] } |
| 16 |
goingson-db-sqlite = { workspace = true } |
| 17 |
kberg = { workspace = true } |
| 18 |
|
| 19 |
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "signal"] } |
| 20 |
sqlx = { workspace = true, features = ["sqlite"] } |
| 21 |
serde = { workspace = true } |
| 22 |
serde_json = { workspace = true } |
| 23 |
chrono = { workspace = true } |
| 24 |
uuid = { workspace = true } |
| 25 |
async-trait = { workspace = true } |
| 26 |
tracing = { workspace = true } |
| 27 |
tracing-subscriber = { workspace = true } |
| 28 |
|
| 29 |
[lints] |
| 30 |
workspace = true |
| 31 |
|