21 lines
458 B
TOML
21 lines
458 B
TOML
[package]
|
|
name = "api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
simple_logger = "4.1"
|
|
actix-web = "4.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.7"
|
|
url = { version = "2.3", features = ["serde"] }
|
|
actix-web-actors = "4.2"
|
|
actix = "0.13"
|
|
lazy_static = "1.4"
|
|
chrono = "0.4"
|
|
serde_json = "1"
|
|
|
|
common = { path = "../common" } |