mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-22 19:28:01 +00:00
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
27 lines
751 B
TOML
27 lines
751 B
TOML
[package]
|
|
name = "serde_derive"
|
|
version = "0.9.4"
|
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
|
|
homepage = "https://serde.rs"
|
|
repository = "https://github.com/serde-rs/serde"
|
|
documentation = "https://serde.rs/codegen.html"
|
|
keywords = ["serde", "serialization"]
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
[features]
|
|
unstable = []
|
|
|
|
[badges]
|
|
travis-ci = { repository = "serde-rs/serde" }
|
|
|
|
[lib]
|
|
name = "serde_derive"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "0.3.8"
|
|
serde_codegen_internals = { version = "=0.12.0", default-features = false, path = "../serde_codegen_internals" }
|
|
syn = { version = "0.11", features = ["aster", "visit"] }
|