You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
846 B
31 lines
846 B
[package]
|
|
name = "rocket-inv"
|
|
version = "0.1.0"
|
|
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
#rocket-download-response = "0.4.9"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version="1", features= ["preserve_order"] }
|
|
serde_yaml = "0.8.16"
|
|
json_dotpath = "1.0.3"
|
|
titlecase = "1.1.0"
|
|
rand = "0.8.3"
|
|
|
|
rocket_session = "0.2"
|
|
#rocket_session = { path = "../rocket-session" }
|
|
|
|
# special data structure that preserves order
|
|
indexmap = { version="1.6.1", features=["serde-1"] }
|
|
|
|
rocket = { version="0.4.6", default-features = false}
|
|
rocket_contrib = { version="0.4.6", features = ["json", "serve", "tera_templates"]}
|
|
|
|
ifmt = "0.3"
|
|
parking_lot = "0.11"
|
|
lazy_static = "1.4"
|
|
linked-hash-map = "0.5"
|
|
|