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

Loading…
Cancel
Save