In `Cargo.toml` set the exact version for `thiserror` crate and the tilde requirement for all the others

pull/70/head
Meliurwen 2 years ago
parent ce139afdb6
commit a92b605daa
Signed by: meliurwen
GPG Key ID: 818A8B35E9F1CE10
  1. 16
      reCTBN/Cargo.toml

@ -6,13 +6,13 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ndarray = {version="*", features=["approx-0_5"]}
thiserror = "*"
rand = "*"
bimap = "*"
enum_dispatch = "*"
statrs = "*"
rand_chacha = "*"
ndarray = {version="~0.15", features=["approx-0_5"]}
thiserror = "1.0.37"
rand = "~0.8"
bimap = "~0.6"
enum_dispatch = "~0.3"
statrs = "~0.16"
rand_chacha = "~0.3"
[dev-dependencies]
approx = { package = "approx", version = "0.5" }
approx = { package = "approx", version = "~0.5" }

Loading…
Cancel
Save