17 lines
371 B
TOML
17 lines
371 B
TOML
[package]
|
|
name = "cat_rust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
config = "0.13.1"
|
|
serde = "1.0.8"
|
|
rusqlite = { version = "0.28.0", features = ["bundled"] }
|
|
r2d2 = "0.8"
|
|
r2d2_sqlite = "0.21"
|
|
actix-files = "0.6"
|
|
env_logger = "0.9.0"
|
|
log = "0.4" |