diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 21:44:15 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 21:48:40 -0800 |
commit | 9459647ba23f71f7193c4886573214519c92c4ce (patch) | |
tree | 2e2788a2b558589b064b09ccc208a975f6ed716d | |
parent | 1059f22aae0b21d1991929973cb77780cfc2f1b7 (diff) | |
download | fatcat-9459647ba23f71f7193c4886573214519c92c4ce.tar.gz fatcat-9459647ba23f71f7193c4886573214519c92c4ce.zip |
Fix Cargo version pins
-rw-r--r-- | rust/Cargo.lock | 6 | ||||
-rw-r--r-- | rust/Cargo.toml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock index fc93f8c1..5fe81328 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -552,13 +552,13 @@ dependencies = [ "iron-slog 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "iron-test 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "macaroon 0.1.1 (git+https://github.com/bnewbold/libmacaroon-rs?branch=bnewbold-broken)", "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sentry 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", "serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.34 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 9a3b0534..077b9344 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -39,7 +39,7 @@ slog-async = "*" slog-stdlog = "*" slog-scope = "*" serde_json = "1.0" -serde = "*" +serde = "1.0" serde_derive = "1.0" serde_ignored = "0.0.4" sentry = { version = "^0.12", default-features = false, features = ["with_client_implementation", "with_backtrace", "with_panic", "with_log", "with_rust_info", "with_failure"] } |