wasmcloud/Cargo.toml

46 lines
1.1 KiB
TOML

[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]
chrono = { version = "0.4", features = ["serde"] }
color-eyre = "0.5"
diesel = { version = "1", features = ["postgres", "r2d2", "uuidv07", "chrono"] }
elfs = "0"
lazy_static = "1.4"
jwt = "0.11"
hmac = "0.9"
sha2 = "0.9"
raze = "0.2"
rocket = "0.4"
rocket_oauth2 = "0.4"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-log = "0.1"
ureq = { version = "1", features = ["json", "charset"] }
uuid = { version = "0.7", features = ["serde", "v4"] }
rocket_upload = { path = "./lib/rocket_upload" }
[dependencies.rocket_contrib]
version = "0.4"
default-features = false
features = ["json", "diesel_postgres_pool", "uuid", "helmet"]
[dependencies.reqwest]
version = "0.10"
default-features = false
features = [ "blocking" ]
[workspace]
members = [
"./lib/rocket_upload"
]