diff options
author | Andreas Fuchs | 2020-12-15 14:08:31 -0500 |
---|---|---|
committer | GitHub | 2020-12-15 12:08:31 -0700 |
commit | c9eb270a8b7fcf4a069a6a9d9c0325b2082164bf (patch) | |
tree | df98b1b10d43c6b4870bc6839313e0c8faca35fe /Cargo.toml | |
parent | dc466f26889f72feb25e94248ff96b3a3ca3e7e0 (diff) |
Debump the smol_str version to 0.1.16 to build on rust 1.45.2 (#28)
* Debump the smol_str version to 0.1.16 to build on rust 1.45.2
Rust 1.45.2 is what ships in the 20.09 release, and smol_str 0.1.17 is
incompatible with it.
* Clarify version bounds on the smol_str dependency
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -28,6 +28,11 @@ toml = "0.5" yn = "0.1" rnix = "0.8" +# smol_str is required by rnix, but 0.1.17 doesn't build on rustc +# 1.45.2 (shipped in nixos-20.09); it requires rustc 1.46.0. See +# <https://github.com/serokell/deploy-rs/issues/27>: +smol_str = "=0.1.16" + [[bin]] name = "deploy" |