-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (31 loc) · 911 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
34
35
36
37
38
[package]
name = "usher"
version = "0.2.1" # remember to update html_root_url
authors = ["Isaac Whitfield <iw@whitfin.io>"]
description = "Parameterized routing for generic resources in Rust"
repository = "https://github.com/whitfin/usher"
keywords = ["data-structures", "http", "io", "tree", "web-services"]
categories = ["algorithms", "data-structures", "web-programming"]
readme = "README.md"
edition = "2018"
license = "MIT"
[badges]
travis-ci = { repository = "whitfin/usher" }
[features]
default = []
web = ["http"]
[dependencies]
http = { version = "0.2", optional = true }
[dev-dependencies]
futures = "0.3"
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1.19", features = ["full"] }
[[example]]
name = "web-basic"
required-features = ["web"]
[[example]]
name = "web-hyper-async"
required-features = ["web"]
[[example]]
name = "web-hyper-sync"
required-features = ["web"]