368784949e
* move to cargo clippy instead of using the clippy plugin fixes #729 * non-exectable scripts must be run with `sh` * don't build serde in the clippy travis job * only run clippy tests if installing clippy succeeds * why is travis so picky? * no more serde_codegen * serde_test_suite_deps has no features * don't use empty loops, llvm optimizes them to undefined behaviour * abort the clippy job when clippy lints are triggered * use caches on travis to speed up builds * why are we even using `travis-cargo`? * need to reinstall clippy frequently due to nightly updates * command line tools are hard
33 lines
774 B
TOML
33 lines
774 B
TOML
[package]
|
|
name = "serde_test_suite"
|
|
version = "0.0.0"
|
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
description = "A generic serialization/deserialization framework"
|
|
homepage = "https://serde.rs"
|
|
repository = "https://github.com/serde-rs/serde"
|
|
documentation = "https://docs.serde.rs/serde/"
|
|
readme = "README.md"
|
|
keywords = ["serialization"]
|
|
publish = false
|
|
|
|
[features]
|
|
unstable-testing = [
|
|
"compiletest_rs",
|
|
"serde/unstable-testing",
|
|
]
|
|
|
|
[dev-dependencies]
|
|
fnv = "1.0"
|
|
rustc-serialize = "0.3.16"
|
|
serde = { path = "../serde" }
|
|
serde_derive = { path = "../serde_derive" }
|
|
serde_test = { path = "../serde_test" }
|
|
|
|
[dependencies]
|
|
compiletest_rs = { version = "0.2", optional = true }
|
|
|
|
[[test]]
|
|
name = "test"
|
|
path = "tests/test.rs"
|