Skip to content

Commit

Permalink
relax specific versions of dependencies. this allows deduplication of…
Browse files Browse the repository at this point in the history
… the sha2 crate. Only the top level crate should lock down versions of dependencies, with the lockfile
  • Loading branch information
arvidn committed Nov 25, 2023
1 parent 0995a0a commit e48e94d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 19 deletions.
17 changes: 8 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 9 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,21 @@ pre-eval = []
lto = true

[dependencies]
hex = "=0.4.3"
lazy_static = "=1.4.0"
num-bigint = "=0.4.3"
num-traits = "=0.2.15"
num-integer = "=0.1.45"
chia-bls = ">=0.2.13"
sha2 = "=0.9.9"
hex = "0.4.3"
lazy_static = "1.4.0"
num-bigint = "0.4.3"
num-traits = "0.2.15"
num-integer = "0.1.45"
chia-bls = "0.2.13"
sha2 = "0.10.8"
openssl = { version = "=0.10.55", features = ["vendored"], optional = true }
getrandom = { version = "=0.2.9", features = ["js" ]}
# for secp sigs
k256 = { version = "0.13.1", features = ["ecdsa"] }
p256 = { version = "0.13.2", features = ["ecdsa"] }

[dev-dependencies]
rstest = "=0.17.0"
criterion = "=0.5.1"
rstest = "0.17.0"
criterion = "0.5.1"

[[bench]]
name = "run-program"
Expand Down

0 comments on commit e48e94d

Please sign in to comment.