Skip to content

Commit a75100c

Browse files
authored
Merge pull request #7 from nox/serde
Update serde to 0.9
2 parents 127d08b + bb3a63b commit a75100c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "dwrote"
33
description = "Lightweight binding to DirectWrite."
44
repository = "https://github.com/vvuk/dwrote-rs"
55
license = "MPL-2.0"
6-
version = "0.1.7"
6+
version = "0.2.0"
77
authors = ["Vladimir Vukicevic <[email protected]>"]
88
build = "build.rs"
99

@@ -21,10 +21,10 @@ lazy_static = "0.2"
2121
winapi = "0.2"
2222
kernel32-sys = "0.2"
2323
gdi32-sys = "0.2"
24-
serde = "0.8"
25-
serde_derive = {version = "0.8", optional = true}
24+
serde = "0.9"
25+
serde_derive = {version = "0.9", optional = true}
2626

2727
[build-dependencies.serde_codegen]
28-
version = "0.8"
28+
version = "0.9"
2929
default_features = false
3030
optional = true

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* License, v. 2.0. If a copy of the MPL was not distributed with this
33
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44

5-
#![cfg_attr(feature = "serde_derive", feature(proc_macro, rustc_attrs, structural_match))]
65
#![allow(non_upper_case_globals)]
76

87
#[cfg(feature = "serde_derive")]

0 commit comments

Comments
 (0)