diff options
author | Daniel Mueller <deso@posteo.net> | 2019-12-29 09:22:57 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-12-29 09:22:57 -0800 |
commit | 4ae7f49555583b0d02fe73354e79243980545b60 (patch) | |
tree | 36ea299e8a2c41ba0e2bc24f7b08ef987d088091 /lazy-static/Cargo.toml | |
parent | 3602aa37413186da0973c069bd0edc701a240dfe (diff) | |
download | nitrocli-4ae7f49555583b0d02fe73354e79243980545b60.tar.gz nitrocli-4ae7f49555583b0d02fe73354e79243980545b60.tar.bz2 |
Update lazy_static crate to 1.4.0
This change updates the lazy_static crate version to 1.4.0.
Import subrepo lazy-static/:lazy-static at 421669662b35fcb455f2902daed2e20bbbba79b6
Diffstat (limited to 'lazy-static/Cargo.toml')
-rw-r--r-- | lazy-static/Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lazy-static/Cargo.toml b/lazy-static/Cargo.toml index 679f5cd..9c0a177 100644 --- a/lazy-static/Cargo.toml +++ b/lazy-static/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lazy_static" # NB: When modifying, also modify html_root_url in lib.rs -version = "1.2.0" +version = "1.4.0" authors = ["Marvin Löbel <loebel.marvin@gmail.com>"] license = "MIT/Apache-2.0" @@ -15,15 +15,15 @@ categories = [ "no-std", "rust-patterns", "memory-management" ] exclude = ["/.travis.yml", "/appveyor.yml"] [dependencies.spin] -version = "0.4.10" +version = "0.5.0" optional = true -default-features = false -features = ["once"] [features] -nightly = [] spin_no_std = ["spin"] +[dev-dependencies] +doc-comment = "0.3.1" + [badges] appveyor = { repository = "rust-lang-nursery/lazy-static.rs" } travis-ci = { repository = "rust-lang-nursery/lazy-static.rs" } |