Skip to content

Commit 85ceba8

Browse files
committed
Require log <= 0.3.8 for dev builds
1 parent 36df148 commit 85ceba8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ libc = { version = "0.2", optional = true }
2929
winapi = { version = "0.3", features = ["minwindef", "ntsecapi", "profileapi", "winnt"] }
3030

3131
[dev-dependencies]
32-
log = "0.3.0"
32+
# log 0.3.9 is a wrapper around 0.4.0 which doesn't work with rustc 1.15
33+
# To keep our CI pin on 1.15 we require log <= 0.3.8.
34+
log = "0.3, <=0.3.8"
3335

3436
[workspace]
3537
members = ["rand-derive"]

0 commit comments

Comments
 (0)