wasmcloud/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

2020-10-26 16:56:24 +00:00
[package]
name = "wasmcloud-api"
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-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-28 01:07:25 +00:00
diesel = { version = "1", features = ["postgres", "r2d2", "uuidv07", "chrono"] }
2020-10-30 15:01:36 +00:00
elfs = "0"
2020-10-28 16:20:00 +00:00
lazy_static = "1.4"
jwt = "0.11"
hmac = "0.9"
sha2 = "0.9"
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 = { version = "^1", features = ["derive"] }
serde_json = "^1"
thiserror = "1"
2020-10-27 15:43:54 +00:00
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-log = "0.1"
ureq = { version = "1", features = ["json", "charset"] }
2020-10-26 16:56:24 +00:00
uuid = { version = "0.7", features = ["serde", "v4"] }
2020-10-30 16:20:09 +00:00
rocket_upload = { path = "./lib/rocket_upload" }
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 = [
"./lib/rocket_upload"
]