Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ecies/rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6bf5c0a93b974804c404d5a9705c4de819fa8fe1
Choose a base ref
..
head repository: ecies/rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fa662c76267344c0d016faa4dc11f1bd01061a48
Choose a head ref
Showing with 10 additions and 10 deletions.
  1. +1 −1 .github/workflows/ci.yml
  2. +9 −9 Cargo.toml
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain: ["1.70.0", stable, beta, nightly]
toolchain: ["1.69.0", stable, beta, nightly]
steps:
- uses: actions/checkout@v3

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -42,18 +42,18 @@ getrandom = {version = "0.2.12", default-features = false}
rand_core = {version = "0.6.4", default-features = false, features = ["getrandom"]}

# configuration
once_cell = {version = "1.19.0", default-features = false}
once_cell = {version = "1.18.0", default-features = false}
parking_lot = "0.12.1"

[target.'cfg(all(target_arch = "wasm32", target_os="unknown"))'.dependencies]
# only for js (browser or node). if it's not js, like substrate, it won't build
getrandom = {version = "0.2.12", default-features = false, features = ["js"]}
once_cell = {version = "1.19.0", default-features = false, features = ["std"]}
wasm-bindgen = {version = "0.2.92", default-features = false}
getrandom = {version = "0.2.10", default-features = false, features = ["js"]}
once_cell = {version = "1.18.0", default-features = false, features = ["std"]}
wasm-bindgen = {version = "0.2.87", default-features = false}

[target.'cfg(all(target_arch = "wasm32", not(target_os="unknown")))'.dependencies]
# allows wasm32-wasi to build
once_cell = {version = "1.19.0", default-features = false, features = ["std"]}
once_cell = {version = "1.18.0", default-features = false, features = ["std"]}

[features]
default = ["openssl"]
@@ -74,12 +74,12 @@ criterion = {version = "0.4.0", default-features = false}
hex = {version = "0.4.3", default-features = false, features = ["alloc"]}

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.42"
wasm-bindgen-test = "0.3.37"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
futures-util = "0.3.30"
reqwest = "0.11.24"
tokio = {version = "1.36.0", features = ["rt-multi-thread"]}
futures-util = "0.3.29"
reqwest = "0.11.22"
tokio = {version = "1.33.0", features = ["rt-multi-thread"]}

[[bench]]
harness = false