tide/Cargo.toml

100 lines
2.3 KiB
TOML
Raw Permalink Normal View History

2018-08-08 14:31:52 +00:00
[package]
name = "tide"
2021-12-06 20:12:27 +00:00
version = "0.17.0-beta.1"
2020-09-27 01:07:44 +00:00
description = "A minimal and pragmatic Rust web application framework built for rapid development"
2018-11-08 04:16:07 +00:00
authors = [
"Aaron Turon <aturon@mozilla.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
2020-05-16 17:29:43 +00:00
"Wonwoo Choi <chwo9843@gmail.com>",
2018-11-08 04:16:07 +00:00
]
documentation = "https://docs.rs/tide"
keywords = ["tide", "http", "web", "framework", "async"]
categories = [
"network-programming",
"asynchronous",
"web-programming::http-server"
]
2018-11-08 04:16:07 +00:00
edition = "2018"
license = "MIT OR Apache-2.0"
2018-08-08 14:31:52 +00:00
readme = "README.md"
repository = "https://github.com/http-rs/tide"
2018-08-08 14:31:52 +00:00
2019-12-14 07:38:28 +00:00
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
default = ["h1-server"]
cookies = ["http-types/cookies"]
2020-05-15 11:27:51 +00:00
h1-server = ["async-h1"]
logger = []
docs = ["unstable"]
2020-10-09 02:38:48 +00:00
sessions = ["async-session", "cookies"]
sse = ["async-sse"]
unstable = []
2018-08-08 14:31:52 +00:00
[dependencies]
2020-12-18 11:56:53 +00:00
async-h1 = { version = "2.3.0", optional = true }
2021-06-01 01:44:42 +00:00
async-session = { version = "3.0", optional = true }
async-sse = { version = "5.1.0", optional = true }
2020-10-15 21:40:11 +00:00
async-std = { version = "1.6.5", features = ["unstable"] }
async-trait = "0.1.41"
futures-util = "0.3.6"
http-client = { version = "6.1.0", default-features = false }
http-types = { version = "2.11.0", default-features = false, features = ["fs"] }
2020-10-15 21:40:11 +00:00
kv-log-macro = "1.0.7"
log = { version = "0.4.13", features = ["kv_unstable_std"] }
2021-01-07 07:44:35 +00:00
pin-project-lite = "0.2.0"
2020-10-15 21:40:11 +00:00
serde = "1.0.117"
serde_json = "1.0.59"
routefinder = "0.5.0"
regex = "1.5.5"
2018-08-08 14:31:52 +00:00
[dev-dependencies]
2020-10-15 21:40:11 +00:00
async-std = { version = "1.6.5", features = ["unstable", "attributes"] }
criterion = "0.3.3"
femme = "2.1.1"
2020-10-15 21:40:11 +00:00
juniper = "0.14.2"
kv-log-macro = "1.0.7"
lazy_static = "1.4.0"
2020-07-23 15:01:07 +00:00
logtest = "2.0.0"
2020-05-16 17:26:55 +00:00
portpicker = "0.1.0"
2020-10-15 21:40:11 +00:00
serde = { version = "1.0.117", features = ["derive"] }
surf = { version = "2.0.0", default-features = false, features = ["h1-client"] }
tempfile = "3.1.0"
2019-12-14 07:38:28 +00:00
2020-10-09 02:38:48 +00:00
[[test]]
name = "cookies"
path = "tests/cookies.rs"
required-features = ["cookies"]
2019-12-14 07:38:28 +00:00
[[test]]
name = "nested"
path = "tests/nested.rs"
required-features = ["unstable"]
2020-10-09 02:38:48 +00:00
[[test]]
name = "sessions"
path = "tests/sessions.rs"
required-features = ["sessions"]
[[bench]]
name = "router"
harness = false
2020-10-09 02:38:48 +00:00
2021-10-21 19:07:16 +00:00
[[bench]]
name = "nest"
harness = false
2020-10-09 02:38:48 +00:00
[[example]]
name = "cookies"
required-features = ["cookies"]
[[example]]
name = "sessions"
required-features = ["sessions"]
[[example]]
name = "sse"
required-features = ["sse"]