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
David Tolnay
9834af7ed9
Stop building on 1.5.0
...
Syntex no longer supports this version of Rust.
2016-06-11 01:31:17 -07:00
Homu
6b404d8529
Auto merge of #367 - dtolnay:default, r=oli-obk
...
Simplify implementation of #[serde(default=...)]
2016-06-10 17:57:39 +09:00
David Tolnay
3119cc8857
Simplify implementation of #[serde(default=...)]
2016-06-09 23:21:42 -07:00
David Tolnay
bb059b97c0
Release 0.7.9
2016-06-09 20:16:49 -07:00
Homu
b7188f7022
Auto merge of #362 - dtolnay:expand, r=oli-obk
...
Add serde_codegen::expand to avoid public Syntex dependency
Required for #358 . We can remove `serde_codegen::register` in the next breaking release.
This allows Syntex users to avoid being broken by Serde bumping its Syntex dependency.
2016-06-10 07:46:33 +09:00
David Tolnay
a64fe99d1b
Add cargo override for building examples
2016-06-09 11:23:43 -07:00
David Tolnay
c716c4e261
Use AsRef to accept paths in serde_codegen::expand
2016-06-09 11:23:43 -07:00
David Tolnay
3d2e3beafe
Add serde_codegen::expand to avoid public Syntex dependency
2016-06-09 11:23:43 -07:00
Homu
1917e54a6e
Auto merge of #363 - dtolnay:example, r=oli-obk
...
Fix nightly check in serde-syntex-example
Fixes #361 .
2016-06-10 01:58:51 +09:00
David Tolnay
898b346d48
1.5 does not have a stable libcore
2016-06-09 09:17:21 -07:00
David Tolnay
e90adb20ef
Run serde-syntex-example in Travis
2016-06-09 01:42:00 -07:00
Homu
a52e7f5554
Auto merge of #364 - dtolnay:rustup, r=oli-obk
...
Use rustup in serde-syntex-example instead of multirust
Multirust is deprecated.
2016-06-09 17:36:01 +09:00
David Tolnay
7afb8b52ae
Use rustup in serde-syntex-example instead of multirust
2016-06-09 01:16:31 -07:00
David Tolnay
cb4694387e
Fix nightly check in serde-syntex-example
2016-06-09 01:08:12 -07:00
David Tolnay
58fa302007
Release 0.7.8
2016-06-06 10:13:52 -07:00
Homu
bf33daf124
Auto merge of #354 - dtolnay:attr, r=oli-obk
...
Fix attributes canceling each other
Fixes #353 .
2016-06-06 18:08:20 +09:00
Homu
4b472be56e
Auto merge of #352 - dtolnay:where, r=oli-obk
...
Attribute for handwritten where clauses
Addresses (2) and (3) in https://github.com/serde-rs/serde/issues/336#issuecomment-220378916 .
- If there is a `#[serde(bound="...")]` attribute on the type, use the union of that and the actual type's `where` clause as the `where` clause for the impl and do not attempt to generate any additional `where` clauses whatsoever.
- If there is a `#[serde(bound="...")]` attribute on a field, use that and do not attempt to generate any additional `where` clauses for the field.
The `bound` attribute behaves similar to `rename` in that you can specify a single attribute that applies to both ser and de, or individual ones.
```
#[serde(bound="D: Serialize + Deserialize")]
#[serde(bound(serialize="D: Serialize", deserialize="D: Deserialize"))]
```
EDIT: now addresses (4) from https://github.com/serde-rs/serde/issues/336#issuecomment-220378916 as well.
- If a field contains direct recursion, do not generate any bounds based on that field except from `bound` attributes.
2016-06-06 17:47:45 +09:00
David Tolnay
bdffaf3ea1
Re-enable clippy lint "useless_let_if_seq"
...
This reverts commit 4e6cd2d63f
.
2016-06-05 13:01:22 -07:00
David Tolnay
f197c3ce96
Readme for "bound" attribute
2016-06-05 11:54:36 -07:00
David Tolnay
01dfad6705
Fix attributes canceling each other
2016-06-05 11:40:30 -07:00
David Tolnay
2e06786262
Remove unnecessary clones
2016-06-05 11:23:01 -07:00
David Tolnay
578f34ecaf
Use "bound" attribute instead of "where"
2016-06-05 11:17:43 -07:00
David Tolnay
2c8767cb46
Remove changelog in favor of github release notes
2016-06-05 10:05:56 -07:00
David Tolnay
45c51d3198
Fix build on 1.5.0 which does not have Vec::as_slice
2016-06-04 16:53:45 -07:00
David Tolnay
bd40830905
Do not generate bounds from recursive types
2016-06-04 16:12:01 -07:00
David Tolnay
4e6cd2d63f
Disable clippy lint "useless_let_if_seq"
2016-06-04 15:48:44 -07:00
David Tolnay
2256a04926
Address clippy lint "ptr_arg"
2016-06-04 15:48:44 -07:00
David Tolnay
660ea7bd7b
Attribute for handwritten where clauses
2016-06-04 15:48:42 -07:00
Homu
7052833512
Auto merge of #351 - oli-obk:publish_nits, r=oli-obk
...
also publish the `.in` file used by the build script
2016-06-02 01:47:39 +09:00
Oliver Schneider
5c2cf5778f
also publish the .in
file used by the build script
2016-06-01 13:09:43 +02:00
Homu
b5c0406afe
Auto merge of #349 - oli-obk:undo, r=oli-obk
...
undo the breaking change introduced in 0.7.6
I should probably yank 0.7.6, too
cc @alexcrichton this should unbreak your setup, sorry about that.
2016-06-01 20:01:53 +09:00
Oliver Schneider
96cd910c92
undo the breaking change introduced in 0.7.6
2016-06-01 11:08:59 +02:00
Homu
e0bd57d63c
Auto merge of #347 - erickt:master, r=erickt
...
Add "include" to Cargo.toml files
This filters out junk files from the crates.
Closes #331 .
2016-05-30 23:23:57 +09:00
Erick Tryzelaar
7c784f592e
Add a changelog
2016-05-30 07:23:18 -07:00
Erick Tryzelaar
2c69ccdca4
Add the build script to the Cargo include section
2016-05-30 07:23:09 -07:00
Erick Tryzelaar
66eddd4d9b
Add "include" to Cargo.toml files
...
This filters out junk files from the crates.
Closes #331 .
2016-05-30 07:00:13 -07:00
Homu
1485f0a448
Auto merge of #346 - serde-rs:rustup, r=erickt
...
Rustup too rustc 1.11.0-nightly (7746a334d 2016-05-28)
cc @erickt
2016-05-30 22:45:47 +09:00
Manish Goregaokar
379c9e7148
Rustup too rustc 1.11.0-nightly (7746a334d 2016-05-28)
2016-05-30 14:01:57 +05:30