-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (26 loc) · 1018 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "rite-cloud"
version = "0.2.4"
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tide = "0.16"
oauth2 = { version = "3.0", features = [ "curl" ] }
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11.22", features = ["json"] }
http-types = "2.12"
tera = "1"
tide-tera = "0.2"
hyper-native-tls = "0.3"
uuid = { version = "0.8", features = ["serde", "v4"] }
sqlx = { version = "0.5", features = ["sqlite", "chrono"] }
# workaround for tide not having been fixed yet (see https://github.com/http-rs/async-session/issues/24)
async-sqlx-session = { path="./async-sqlx-session", features = ["sqlite", "async_std"] }
anyhow = "1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
tide-governor = "1.0"
urlencoding = "2.1"
indexmap = { version = "1.7", features = ["serde-1"] }
lazy_static = "1.4.0"