Explaining why we use * in version

This commit is contained in:
Tomusdrw 2016-01-19 14:15:13 +01:00
parent c746f0e62c
commit 2a5a333fc0
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ time = "0.1"
evmjit = { path = "rust-evmjit", optional = true }
ethash = { path = "ethash" }
num_cpus = "0.2"
clippy = "*"
clippy = "*" # Always newest, since we use nightly
[features]
jit = ["evmjit"]

View File

@ -24,7 +24,7 @@ heapsize = "0.2"
itertools = "0.4"
slab = { git = "https://github.com/arkpar/slab.git" }
sha3 = { path = "sha3" }
clippy = "*"
clippy = "*" # Always newest, since we use nightly
[dev-dependencies]
json-tests = { path = "json-tests" }