diff options
author | Vincent Ambo <mail@tazj.in> | 2020-08-01T23·40+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-08-02T02·16+0000 |
commit | e663ca4128ee04bb6b4e9f2b62120a55a8c3ccea (patch) | |
tree | b8cd03558564215cd004972454ecbc82d8e20670 /fun/paroxysm/Cargo.lock | |
parent | 194c498d53ed68a9c70d548008e60eb7bdcbd59a (diff) |
refactor(paroxysm): Use derive macros from serde crate r/1543
serde_derive is deprecated, the macros have moved behind a feature-gate in serde itself. Change-Id: Ib42e7463a81006e23a4fe8a0e48f494610dc8e4c Reviewed-on: https://cl.tvl.fyi/c/depot/+/1550 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
Diffstat (limited to 'fun/paroxysm/Cargo.lock')
-rw-r--r-- | fun/paroxysm/Cargo.lock | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fun/paroxysm/Cargo.lock b/fun/paroxysm/Cargo.lock index f63f802bc367..c3269538e9e1 100644 --- a/fun/paroxysm/Cargo.lock +++ b/fun/paroxysm/Cargo.lock @@ -699,7 +699,6 @@ dependencies = [ "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -910,6 +909,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "serde" version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde_derive 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "serde-hjson" |