David Tolnay
041d5c0842
Make serde_test asserts more consistent
2016-06-28 23:50:19 -07:00
David Tolnay
7d09053bb8
Fix declare_ser_tests to work on old rustc
2016-06-28 23:09:37 -07:00
David Tolnay
8e87926bc2
Round out the Error variants
2016-06-28 22:57:53 -07:00
David Tolnay
d6a462b862
Add serde_test to dev dependencies of serde_macros
2016-06-28 22:50:58 -07:00
David Tolnay
cfc2f9adc0
Remove Error from name of Error variants
2016-06-28 22:49:13 -07:00
David Tolnay
00f94290a6
Add message to CustomError
2016-06-28 22:36:29 -07:00
David Tolnay
093201abfb
Assert tokens are empty after reaching error
2016-06-28 22:23:38 -07:00
David Tolnay
6d64104375
Factor the Token De/Serializer into serde_test
2016-06-28 21:54:51 -07:00
David Tolnay
fb0e62951f
Rename serde_tests to testing
2016-06-28 20:43:59 -07:00
David Tolnay
6ab508a93c
Release 0.7.11
2016-06-23 19:58:31 -07:00
David Tolnay
9f38c2ab59
Merge pull request #409 from knsd/patch-1
...
Fix typo
2016-06-23 09:52:50 -07:00
Fedor Gogolev
021ce5be88
Fix typo
2016-06-23 20:50:27 +04:00
Homu
f1f8b4622b
Auto merge of #402 - erickt:clippy, r=erickt
...
Update link to clippy lint report
2016-06-23 12:52:36 +09:00
Erick Tryzelaar
1fb2172a25
Merge pull request #405 from erickt/rustup
...
Version bump the syntex stack
2016-06-22 20:34:15 -07:00
Erick Tryzelaar
5941f1d071
Version bump the syntex stack
2016-06-22 20:19:47 -07:00
Erick Tryzelaar
8d6cc4dfa5
Update link to clippy lint report
2016-06-22 10:13:28 -07:00
Erick Tryzelaar
18e077eda9
Add a contributing guide
2016-06-22 07:04:13 -07:00
Homu
c9e2e518ba
Auto merge of #397 - dtolnay:item, r=oli-obk
...
Factor attr parsing into serde_item crate
Fixes #396 . @KodrAus [let me know whether this fits the bill.](5c6a0e12e9/serde_item/src
)
a few other changes to make the API a little more presentable:
- Rename attr::{ContainerAttrs,VariantAttrs,FieldAttrs} to remove the "Attrs" (I see you worked on the corresponding [clippy lint](https://github.com/Manishearth/rust-clippy/issues/904 )).
- Rename attr::Container* to attr::Item to correspond with item::Item and ast::Item. The others already had a correspondence (attr::Variant/item::Variant/ast::Variant, attr::Field/item::Field/ast::Field). Also a unit struct isn't much of a "container."
- Change item::Item::from_ast to return a meaningful error enum instead of printing a message that was hard to generalize to other uses.
- Add item::Variant.span for consistency because Item and Field already had span.
- Remove the "ident" field from attr::Name because we can just fold it into the other two fields.
- Remove attr::Name::(de)serialize_name_expr because it wasn't using the right AstBuilder in the first place.
- Rename the attr:: constructors from_item/from_variant/from_field to from_ast to line up with the item:: constructors; the signatures match.
- Remove attr's dependency on aster because we were only using it for two very simple things.
2016-06-20 16:45:25 +09:00
David Tolnay
51042bde50
Remove ident from Name struct
2016-06-19 20:31:12 -07:00
David Tolnay
5c6a0e12e9
Factor attr parsing into serde_item crate
2016-06-19 20:15:49 -07:00
Homu
d4e1ef659a
Auto merge of #389 - dtolnay:rule, r=oli-obk
...
Remove unused macro rule
2016-06-17 16:52:37 +09:00
David Tolnay
f5f35677f0
Remove unused macro rule
2016-06-17 00:06:11 -07:00
David Tolnay
90d9c77186
Merge pull request #385 from dtolnay/dup
...
Error on duplicate attributes
2016-06-17 00:02:04 -07:00
David Tolnay
882d130e19
Test duplicates within a single attribute
2016-06-16 23:45:34 -07:00
David Tolnay
5f84e601b6
Add explanation of ignored errors in attr.rs
2016-06-16 23:25:46 -07:00
David Tolnay
0bf6a17428
Merge pull request #387 from erickt/master
...
Extend tuple impls up to 16 elements
2016-06-16 09:47:58 -07:00
Erick Tryzelaar
db8881d845
Extend tuple impls up to 16 elements
2016-06-16 11:22:15 +01:00
David Tolnay
3403352749
Merge pull request #377 from dtolnay/travis
...
Remove some low-risk travis builds
2016-06-15 08:54:04 -07:00
David Tolnay
ac69524258
Gather attrs at the beginning
2016-06-15 02:38:47 -07:00
David Tolnay
28589620f6
Error on duplicate attributes
2016-06-14 20:39:21 -07:00
David Tolnay
8e4da7f36b
Merge pull request #383 from oli-obk/compile-fail
...
more cfail tests
2016-06-13 10:46:35 -07:00
Oliver Schneider
4c4a27f53c
more cfail tests
2016-06-13 18:56:45 +02:00
Homu
b838651ac9
Auto merge of #378 - dtolnay:str, r=oli-obk
...
Better error when deriving Deserialize for struct containing &str
Fixes #360 . The error looks like this:
```rust
#[derive(Serialize, Deserialize)]
struct Test<'a> {
s: &'a str,
}
```
```
src/main.rs:6:5: 6:15 error: Serde does not support deserializing fields of type &str; consider using String instead
src/main.rs:6 s: &'a str,
^~~~~~~~~~
```
2016-06-14 00:49:26 +09:00
David Tolnay
5cd8212a61
Merge pull request #381 from dtolnay/nosyntex
...
Remove unnecessary Syntexes
2016-06-12 22:25:50 -07:00
David Tolnay
c5f606f10f
Remove unnecessary Syntexes
2016-06-12 15:50:45 -07:00
David Tolnay
c21bea8b30
Better error when deriving Deserialize for struct containing &str
2016-06-11 21:32:53 -07:00
David Tolnay
22a26a33f4
Remove some low-risk travis builds
2016-06-11 16:21:20 -07:00
David Tolnay
8a09f05644
Release 0.7.10
2016-06-11 13:08:33 -07:00
David Tolnay
5923a0cd2f
Merge pull request #371 from dtolnay/hasher
...
De/serialize for HashMap<K, V, S> and HashSet<T, S>
2016-06-11 11:51:57 -07:00
David Tolnay
1576b5a8a0
Serde_macros tests depend on fnv
2016-06-11 11:15:10 -07:00
Homu
2c4dbf5a84
Auto merge of #370 - dtolnay:expand, r=erickt
...
Use serde_codegen::expand in serde_tests/build.rs
2016-06-12 02:51:08 +09:00
David Tolnay
021f4f2d70
Use serde_codegen::expand in serde_tests/build.rs
2016-06-11 10:02:10 -07:00
David Tolnay
decc571988
De/serialize for HashSet<T, S>
2016-06-11 10:00:33 -07:00
David Tolnay
322d7a90db
Add ser tests for normal HashMap
2016-06-11 10:00:33 -07:00
David Tolnay
dd3f653103
Move bounds to where-clause to increase legibility
2016-06-11 10:00:33 -07:00
David Tolnay
46a1860601
De/serialize for HashMap<K, V, S>
2016-06-11 10:00:33 -07:00
Homu
84a573c926
Auto merge of #372 - dtolnay:old, r=erickt
...
Stop building on 1.5.0
Syntex no longer supports this version of Rust.
2016-06-12 01:09:49 +09:00
Erick Tryzelaar
7dfa8f43f4
Merge pull request #373 from erickt/master
...
Updating to rustc 1.11.0-nightly (7d2f75a95 2016-06-09)
2016-06-11 09:09:22 -07:00
David Tolnay
7375b4e847
Add travis builds for 1.6.0 and 1.7.0
2016-06-11 08:59:02 -07:00
Erick Tryzelaar
48da62ed07
Updating to rustc 1.11.0-nightly (7d2f75a95 2016-06-09)
2016-06-11 08:19:51 -07:00