Geoffrey-rs/geoffrey_api/Cargo.toml

30 lines
805 B
TOML

[package]
name = "geoffrey_api"
version = "0.1.0"
authors = ["Joey Hines <joey@ahines.net>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.16.1", features = ["full"] }
warp = "0.3"
serde = "1.0.124"
serde_json = "1.0.64"
geoffrey_models = { path = "../geoffrey_models" }
geoffrey_db = { path = "../geoffrey_db" }
config = "0.11.0"
structopt = "0.3.21"
log = "0.4.14"
rand = "0.8.4"
regex = "1.5.4"
chrono = { version = "0.4.19", features = ["serde"] }
strsim = "0.10.0"
tokio-stream = { version = "0.1.8", features = ["net"] }
# Doing this for now, as there seems to be an issue with using timestamps
[dependencies.simple_logger]
version = "1.16.0"
default-features = false
features = ["colors"]