Skip to content

Commit

Permalink
chore: update strict types & MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jul 12, 2023
1 parent d00a743 commit db6941d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.66.0 ]
toolchain: [ nightly, beta, stable, 1.67.0 ]
steps:
- uses: actions/checkout@v2
- name: Install rust ${{ matrix.toolchain }}
Expand Down
13 changes: 8 additions & 5 deletions Cargo.lock

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

6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default-members = [
authors = ["Dr Maxim Orlovsky <[email protected]>"]
homepage = "https://github.com/LNP-BP"
repository = "https://github.com/LNP-BP/client_side_validation"
rust-version = "1.66" # Due to strict encoding library (caused by GAD)
rust-version = "1.67" # Due to strict encoding library (caused by GAD)
edition = "2021"
license = "Apache-2.0"

Expand Down Expand Up @@ -55,7 +55,3 @@ serde = ["serde_crate", "commit_verify/serde"]

[package.metadata.docs.rs]
features = [ "all" ]

[patch.crates-io]
strict_encoding = { git = "https://github.com/strict-types/strict-encoding", branch = "u5" }
strict_types = { git = "https://github.com/strict-types/strict-types", branch = "u5" }
4 changes: 2 additions & 2 deletions commit_verify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ required-features = ["stl"]
[dependencies]
amplify = { version = "4.0.0", features = ["hex", "apfloat"] }
commit_encoding_derive = { version = "0.10.0", path = "derive" }
strict_encoding = "2.4.0"
strict_types = { version = "1.4.0", optional = true }
strict_encoding = "2.5.0"
strict_types = { version = "1.5.0", optional = true }
sha2 = "0.10.6"
rand = { version = "0.8.5", optional = true }
serde_crate = { version = "1.0", package = "serde", optional = true }
Expand Down

0 comments on commit db6941d

Please sign in to comment.