commit | 3192a8943a9162081dff28da1ba28ca81023ab92 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sun Sep 04 11:17:06 2016 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Sun Sep 04 11:17:06 2016 -0700 |
tree | 1393b61b018acdccaa39efb059dd59a13eb07906 | |
parent | da4049bdb5af4a87b6136683f6bf20d0e9dcc60f [diff] |
Release 0.2.0
Parse Rust structs and enums without a Syntex dependency, intended for use with Macros 1.1.
[dependencies] item = "0.2"
extern crate item; let raw = " #[derive(Debug, Clone)] pub struct Item { pub ident: Ident, pub attrs: Vec<Attribute>, } "; let ast = item::parse(raw).unwrap();
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.