-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (32 loc) · 962 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
29
30
31
32
33
[package]
name = "hyper-routerify-server-template"
version = "0.1.0"
description = "A Boilerplato template for hyper and routerify server app."
publish = false
homepage = "https://github.com/routerify/hyper-routerify-server-template"
repository = "https://github.com/routerify/hyper-routerify-server-template"
keywords = ["boilerplato", "routerify", "rust", "template"]
categories = ["template-engine"]
authors = ["Rousan Ali <[email protected]>"]
readme = "README.md"
license = "MIT"
edition = "2018"
[dependencies]
hyper = "0.13"
routerify = "1.1"
routerify-cors = "1.1"
routerify-json-response = "1.1"
tokio = { version = "0.2", features = ["full"] }
dotenv = "0.15.0"
colored = "1.9"
log = "0.4"
fern = "0.5"
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "0.8", features = ["v4"] }
bytes = "0.5"
reqwest = { version = "0.10", features = ["json"] }
lazy_static = "1.4.0"
async-trait = "0.1"
url = "2.1"