* Add an off-by-default 'unstable' flag * Remove explicit web framework feature names Having forgotten that deps and features can't have the same name, attempts to better document all the features in one place were misplaced. * Split up tests on Travis `cargo test` doesn't allow `--workspace` and `--features` simultaneously, so we're forced to test each package separately in order to manually specify features (or in this case, test everything but unstable) * Update Travis Config - Document the state of Cargo workspaces and features - Update the benchmarks to trickle down the 'unstable' feature
19 lines
322 B
TOML
19 lines
322 B
TOML
[package]
|
|
name = "benchmarks"
|
|
version = "0.1.2"
|
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
unstable = ["maud/unstable"]
|
|
|
|
[dependencies]
|
|
maud = { path = "../maud" }
|
|
handlebars = "*"
|
|
horrorshow = "*"
|
|
liquid = "*"
|
|
rustc-serialize = "*"
|
|
serde = "*"
|
|
serde_json = "*"
|
|
tera = "*"
|
|
askama = "*"
|