bugspray/Cargo.toml

23 lines
544 B
TOML

[package]
name = "bugspray"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
app = { path = "./app" }
base64 = "0.13.0"
lazy_static = "1.4.0"
rocket = { version = "0.5.0-rc.1", features = ["json"] }
rusqlite = "0.26.3"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.78"
sycamore = { version = "0.7.1", features = ["ssr"] }
tokio = { version = "1.16.1", features = ["full"] }
[workspace]
members = ["app"]
[features]