-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
28 lines (24 loc) · 959 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 = "tide-basic-crud"
version = "0.1.0"
authors = ["Javier Viola <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tide = "0.16.0"
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
serde = { version = "1.0.115", features = ["derive"] }
serde_json = "1.0.57"
sqlx = { version = "0.5.5", features = ["runtime-async-std-rustls", "offline", "macros", "chrono", "json", "postgres", "uuid"] }
chrono = "0.4"
dotenv = "0.15"
uuid = { version = "0.8", features = ["v4", "serde"] }
tera = "1.10.0"
tide-tera = "0.2.4"
oauth2 = { version = "4.0.0", features = ["reqwest"], default-features = false }
surf = { version = "2.1.0" }
# workaround for this isse inn ahash dep https://github.com/tkaitchuck/aHash/issues/95#issuecomment-874150078
indexmap = "=1.6.2"
[dev-dependencies]
assert-json-diff = "2.0.0"
lazy_static = "1.4.0"