Skip to content

Commit c3f47c8

Browse files
committed
Cargo.toml: update toml dependency for serde conflict
The 0.3 version of toml uses an older version of serde which is not compatible with the current version.
1 parent c60bfba commit c3f47c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ crate_type = [ "cdylib", "dylib", "rlib" ]
1212
libc = "0.2.*"
1313
time = "0.1.*"
1414
lazy_static = "0.2.*"
15-
toml = "0.3.*"
16-
serde = "*"
17-
serde_derive = "*"
15+
toml = "0.4.*"
16+
serde = "1.0.*"
17+
serde_derive = "1.0.*"

0 commit comments

Comments
 (0)