Skip to content

Commit

Permalink
Relax version requirements for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kngwyu committed Mar 9, 2020
1 parent 3a0cd8e commit 084b362
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ travis-ci = { repository = "PyO3/pyo3", branch = "master" }
appveyor = { repository = "fafhrd91/pyo3" }

[dependencies]
indoc = "0.3.4"
inventory = "0.1.4"
libc = "0.2.62"
num-bigint = { version = ">= 0.2", optional = true }
num-complex = { version = ">= 0.2", optional = true }
num-traits = "0.2.8"
indoc = "^0.3.4"
inventory = "^0.1.4"
libc = "^0.2.62"
num-bigint = { version = "0.2", optional = true }
num-complex = { version = "0.2", optional = true }
num-traits = "^0.2.8"
parking_lot = { version = "0.10", features = ["nightly"] }
paste = "0.1.6"
paste = "^0.1.6"
pyo3cls = { path = "pyo3cls", version = "=0.9.0-alpha.1" }
unindent = "0.1.4"
unindent = "^0.1.4"

[dev-dependencies]
assert_approx_eq = "1.1.0"
trybuild = "1.0.14"
trybuild = "1.0.23"

[build-dependencies]
regex = "1"
Expand Down

0 comments on commit 084b362

Please sign in to comment.