diff options
author | sterni <sternenseemann@systemli.org> | 2022-05-04T14·10+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-05-04T15·59+0000 |
commit | e42fd0d611b981f901c9ef37494f66dc4045d223 (patch) | |
tree | 0cd26727d892b4e89d02215f19db96560ea48481 /third_party/rust-crates | |
parent | 1dd67af10e47ae381e4116714ddecb5fd0f07c9d (diff) |
chore(3p/rust-crates): regex: 1.4.3 -> 1.5.5 r/4002
No longer builds with edition 2015. Change-Id: I6f05567641eb712feddfe258fd014ae325bd9043 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5520 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/rust-crates')
-rw-r--r-- | third_party/rust-crates/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/rust-crates/default.nix b/third_party/rust-crates/default.nix index b3246dd0a363..17e06a7049a5 100644 --- a/third_party/rust-crates/default.nix +++ b/third_party/rust-crates/default.nix @@ -39,18 +39,18 @@ rec { regex-syntax = buildRustCrate { pname = "regex-syntax"; - version = "0.6.22"; + version = "0.6.25"; edition = "2015"; - sha256 = "0r00n2dgyixacl1sczqp18gxf0xh7x272hcdp62412lypba2gqyg"; + sha256 = "0i211p26m97ii169g0f4gf2a99r8an4xc1fdqj0sf5wpn17qhs29"; }; regex = buildRustCrate { pname = "regex"; - version = "1.4.3"; + version = "1.5.5"; features = [ "std" ]; dependencies = [ regex-syntax ]; - edition = "2015"; - sha256 = "0w0b4bh0ng20lf5y8raaxmxj46ikjqpgwy1iggzpby9lhv9vydkp"; + edition = "2018"; + sha256 = "0i7yrxsvxpx682vdbkvj7j4w3a3z2c1qwmaa795mm9a9prx4yzjk"; }; libloading = buildRustCrate { |