diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-24 12:18:08 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-24 12:18:09 -0800 |
commit | c0d7b740ff8c25d8280d62991293f969bf9567a3 (patch) | |
tree | 55cfb3f879022d8bdd5fea055fd54798e78a148a /rust/fatcat-openapi/Cargo.toml | |
parent | cb9b2107fbfa9cd3a9111851a371a20ab0e08bdf (diff) | |
download | fatcat-c0d7b740ff8c25d8280d62991293f969bf9567a3.tar.gz fatcat-c0d7b740ff8c25d8280d62991293f969bf9567a3.zip |
rust: update lazy_static dependency
The motivation for this is to quiet very verbose warnings about some
deprecated use of std::sync. Expect no actual runtime/behavior change.
Diffstat (limited to 'rust/fatcat-openapi/Cargo.toml')
-rw-r--r-- | rust/fatcat-openapi/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/fatcat-openapi/Cargo.toml b/rust/fatcat-openapi/Cargo.toml index 3f25b4c3..54d982ba 100644 --- a/rust/fatcat-openapi/Cargo.toml +++ b/rust/fatcat-openapi/Cargo.toml @@ -30,8 +30,8 @@ swagger = "0.7" # bodyparser = {version = "0.8", optional = true} url = "1.5" -lazy_static = "0.2" -log = "0.3.0" +lazy_static = "1" +log = "0.4" multipart = {version = "0.13", optional = true} router = {version = "0.6", optional = true} serde = "1.0" |