mi/backend/Cargo.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

2020-09-13 15:23:53 +00:00
[package]
name = "mi"
2020-09-13 16:07:06 +00:00
version = "1.0.0"
2020-09-13 15:23:53 +00:00
authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-11-02 18:06:50 +00:00
chrono = { version = "0.4", features = ["serde"] }
color-eyre = "0.5"
egg-mode = "0.15"
2020-09-13 16:55:29 +00:00
elefren = "0.22"
2020-09-13 16:07:06 +00:00
kankyo = "0.3"
log = "0.4"
2020-09-13 15:23:53 +00:00
mime = "0.3.0"
2020-11-02 18:06:50 +00:00
paseto = { version = "1.0", features = ["easy_tokens", "v2"] }
ring = { version = "^0.16", features = ["std"] }
2020-09-13 15:23:53 +00:00
rand = "0"
2020-11-02 18:06:50 +00:00
rusty_ulid = "0.10"
serde_dhall = "0.8"
serde_json = "^1"
2020-09-13 15:23:53 +00:00
serde = { version = "1", features = ["derive"] }
thiserror = "1"
2020-11-02 18:06:50 +00:00
rocket = "0.4"
tracing = "0.1"
tracing-log = "0.1"
tracing-subscriber = "0.2"
ureq = { version = "1", features = ["json", "charset"] }
uuid = { version = "0.7", features = ["serde", "v4"] }
rocket_prometheus = "0.7.0"
prometheus = { version = "0.10", default-features = false, features = ["process"] }
2020-09-13 15:23:53 +00:00
jsonfeed = { git = "https://github.com/Xe/site" }
2020-11-02 18:06:50 +00:00
[dependencies.diesel]
version = "1"
features = ["sqlite", "r2d2", "uuidv07", "chrono"]
[dependencies.rocket_contrib]
version = "0.4"
default-features = false
features = ["json", "diesel_sqlite_pool", "uuid", "helmet"]