Skip to content

Commit

Permalink
Bump dependencies (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas authored Jul 9, 2023
1 parent a14fb32 commit f3ee379
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ repository = "https://github.com/ecies/rs"
[dependencies]
hkdf = "0.12.3"
libsecp256k1 = "0.7.1"
sha2 = "0.10.6"
sha2 = "0.10.7"

# openssl aes
openssl = {version = "0.10.42", optional = true}
openssl = {version = "0.10.55", optional = true}

# pure rust aes
aes-gcm = {version = "0.10.1", optional = true}
typenum = {version = "1.15.0", optional = true}
aes-gcm = {version = "0.10.2", optional = true}
typenum = {version = "1.16.0", optional = true}

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = {version = "0.2.8", features = ["js"]}
getrandom = {version = "0.2.10", features = ["js"]}
rand = {version = "0.8.5", features = ["getrandom"]}

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand All @@ -47,12 +47,12 @@ criterion = {version = "0.5.1", default-features = false}
hex = "0.4.3"

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

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
futures-util = "0.3.25"
reqwest = "0.11.12"
tokio = {version = "1.21.2", features = ["rt-multi-thread"]}
futures-util = "0.3.28"
reqwest = "0.11.18"
tokio = {version = "1.29.1", features = ["rt-multi-thread"]}

[[bench]]
harness = false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/1c6d6ed949dd4836ab97421039e8be75)](https://app.codacy.com/gh/ecies/rs/dashboard)
[![License](https://img.shields.io/github/license/ecies/rs.svg)](https://github.com/ecies/rs)
[![CI](https://img.shields.io/github/workflow/status/ecies/rs/Build)](https://github.com/ecies/rs/actions)
[![CI](https://img.shields.io/github/actions/workflow/status/ecies/rs/ci.yml)](https://github.com/ecies/rs/actions)
[![Crates](https://img.shields.io/crates/v/ecies)](https://crates.io/crates/ecies)
[![Doc](https://docs.rs/ecies/badge.svg)](https://docs.rs/ecies/latest/ecies/)

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ mod tests {

use utils::tests::decode_hex;

const PYTHON_BACKEND: &str = "https://ecies.deta.dev/";
const PYTHON_BACKEND: &str = "https://eciespydemo-1-d5397785.deta.app/";

let (sk, pk) = generate_keypair();

Expand Down

0 comments on commit f3ee379

Please sign in to comment.