Skip to content

Commit

Permalink
better dependency versioning (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoncolburne authored Feb 6, 2023
1 parent 0037748 commit 73c6404
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ keywords = ["cesr", "keri", "acdc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
base64 = "0.21.0"
blake2 = "0.10.6"
blake3 = "1.3.3"
ed25519-dalek = "1.0.1"
k256 = "0.12.0"
lazy_static = "1.4.0"
sha2 = "0.10.6"
sha3 = "0.10.6"
thiserror = "1.0.38"
base64 = "~0.21"
blake2 = "~0.10"
blake3 = "~1"
ed25519-dalek = "~1"
k256 = "~0.12"
lazy_static = "~1"
sha2 = "~0.10"
sha3 = "~0.10"
thiserror = "~1"

[dev-dependencies]
hex-literal = "0.3.4"
hex = "0.3.1"
rand = "0.7.0"
rand_core = "0.6.4"
hex-literal = "*"
hex = "*"
rand = "0.7.0" # this needs pinning for one of the seeding pieces of a signing suite
rand_core = "*"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ TAIL_LINES = $(shell echo $$(( $(TOTAL_LINES) - $(DELIMITING_LINE) )))

python:
@head -n $(DELIMITING_LINE) Cargo.toml > cargo/$@/Cargo.toml
@echo "pyo3 = { version = \"0.18.0\", features = [\"abi3\", \"extension-module\"] }" >> cargo/$@/Cargo.toml
@echo "pyo3 = { version = \"~0.18\", features = [\"abi3\", \"extension-module\"] }" >> cargo/$@/Cargo.toml
@tail -n $(TAIL_LINES) Cargo.toml >> cargo/$@/Cargo.toml
@echo >> cargo/$@/Cargo.toml
@cat cargo/$@/Cargo.toml.tail >> cargo/$@/Cargo.toml
Expand Down

0 comments on commit 73c6404

Please sign in to comment.