vial 0.0.7

a micro micro-framework
Documentation
[package]
name = "vial"
description = "a micro micro-framework"
version = "0.0.7"
authors = ["chris west <c@xvxx.io>"]
documentation = "https://docs.rs/vial/"
edition = "2018"
license = "MIT"
repository = "https://github.com/xvxx/vial"
readme = "README.md"

[package.metadata.release]
dev-version-ext = "dev"

[[example]]
name = "horrorshow"
required-features = ["horror"]

[[example]]
name = "markdown"
required-features = ["markdown"]

[[example]]
name = "state"
required-features = ["stateful"]

[features]
markdown = ['pulldown-cmark', 'autolink']
horror = ['horrorshow']
stateful = ['state']
default = []

[dependencies]
threadpool = "1.7.1"
libc-strftime = "0.2.0"
percent-encoding = "2.1.0"

pulldown-cmark = { version = "0.7", default-features = false, optional = true }
autolink = { version = "0.3.0", optional = true }

horrorshow = { version = "0.8.3", optional = true }

state = { version = "0.4", features = ["tls"], optional = true }