remote-party-finder/server/Cargo.toml

32 lines
837 B
TOML
Raw Normal View History

2021-10-04 03:17:09 +00:00
[package]
name = "remote-party-finder"
version = "0.1.0"
2023-02-11 18:39:48 +00:00
edition = "2021"
2021-10-04 03:17:09 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
2022-07-04 14:26:37 +00:00
askama = { version = "0.11", features = ["with-warp"] }
askama_warp = "0.12"
2021-10-04 03:17:09 +00:00
base64 = "0.13"
bitflags = "1"
chrono = { version = "0.4", features = ["serde"] }
chrono-humanize = "0.2"
ffxiv_types = "1"
lazy_static = "1"
maplit = "1"
mime = "0.3"
mongodb = { version = "2", features = ["bson-chrono-0_4"] }
2023-02-11 18:39:48 +00:00
sestring = { version = "0.2", features = ["serde"] }
2021-10-04 03:17:09 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_repr = "0.1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tokio-stream = "0.1"
2023-02-11 18:39:48 +00:00
toml = "0.7"
2021-10-04 03:17:09 +00:00
warp = { version = "0.3", default-features = false }
[dev-dependencies]
lazy_static = "1"