wasmcloud/Cargo.toml

52 lines
1.1 KiB
TOML
Raw Normal View History

2020-10-26 16:56:24 +00:00
[package]
name = "trisiel_api"
2020-10-26 16:56:24 +00:00
version = "0.1.0"
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-10-30 21:18:52 +00:00
blake3 = "0.3"
2020-10-28 01:07:25 +00:00
chrono = { version = "0.4", features = ["serde"] }
2020-10-27 15:43:54 +00:00
color-eyre = "0.5"
2020-10-30 15:01:36 +00:00
elfs = "0"
2020-10-30 21:18:52 +00:00
hex = "0"
2020-10-28 16:20:00 +00:00
hmac = "0.9"
2020-10-30 21:18:52 +00:00
jwt = "0.11"
lazy_static = "1.4"
2020-10-30 18:09:35 +00:00
raze = "0.2"
2020-10-26 16:56:24 +00:00
rocket = "0.4"
2020-10-27 15:43:54 +00:00
rocket_oauth2 = "0.4"
2020-10-26 16:56:24 +00:00
serde_json = "^1"
2020-10-30 21:18:52 +00:00
serde = { version = "^1", features = ["derive"] }
sha2 = "0.9"
thiserror = "1"
2020-10-27 15:43:54 +00:00
tracing = "0.1"
tracing-log = "0.1"
2020-10-30 21:18:52 +00:00
tracing-subscriber = "0.2"
2020-10-27 15:43:54 +00:00
ureq = { version = "1", features = ["json", "charset"] }
2020-10-26 16:56:24 +00:00
uuid = { version = "0.7", features = ["serde", "v4"] }
2020-10-31 12:43:38 +00:00
url = "2"
2020-10-26 16:56:24 +00:00
2020-10-30 16:20:09 +00:00
rocket_upload = { path = "./lib/rocket_upload" }
2020-10-31 00:38:00 +00:00
[dependencies.diesel]
version = "1"
features = ["postgres", "r2d2", "uuidv07", "chrono"]
2020-10-26 16:56:24 +00:00
[dependencies.rocket_contrib]
version = "0.4"
default-features = false
2020-10-27 15:43:54 +00:00
features = ["json", "diesel_postgres_pool", "uuid", "helmet"]
2020-10-30 16:20:09 +00:00
2020-10-30 18:09:35 +00:00
[dependencies.reqwest]
version = "0.10"
default-features = false
features = [ "blocking" ]
2020-10-30 16:20:09 +00:00
[workspace]
members = [
2020-10-31 12:43:38 +00:00
"./lib/rocket_upload",
2020-10-30 16:20:09 +00:00
]