-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from kristoferlund/dev
v0.0.7
- Loading branch information
Showing
11 changed files
with
781 additions
and
272 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic_siwe" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
edition = "2021" | ||
authors = ["Kristofer Lund <[email protected]>"] | ||
description = "Integrate Ethereum wallet-based authentication (SIWE) with applications on the Internet Computer (ICP) platform." | ||
|
@@ -15,10 +15,10 @@ serde = { version = "1.0.188", features = ["derive"] } | |
serde_json = "1.0.66" | ||
serde_bytes = "0.11" | ||
serde_cbor = "0.11" | ||
candid = "0.9.11" | ||
candid = "0.10.9" | ||
hex = "0.4.3" | ||
ic-cdk = "0.11.3" | ||
ic-cdk-timers = { version = "0.5.1", optional = true } | ||
ic-cdk = "0.15.0" | ||
ic-cdk-timers = { version = "0.9.0", optional = true } | ||
ic-certified-map = "0.4.0" | ||
url = "2.4.1" | ||
time = { version = "0.3.30", features = ["formatting"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic_siwe_provider" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
edition = "2021" | ||
authors = ["Kristofer Lund <[email protected]>"] | ||
description = "Using the pre built ic_siwe_provider canister is the easiest way to integrate Ethereum wallet authentication into an Internet Computer (ICP) application." | ||
|
@@ -12,10 +12,10 @@ repository = "https://github.com/kristoferlund/ic-siwe" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
candid = "0.9.11" | ||
ic-cdk = "0.11.3" | ||
candid = "0.10.9" | ||
ic-cdk = "0.15.0" | ||
ic_siwe = { path = "../ic_siwe" } | ||
ic-stable-structures = "0.6.0" | ||
ic-stable-structures = "0.6.5" | ||
ic-certified-map = "0.4.0" | ||
serde = "1.0.193" | ||
serde_json = "1.0.108" | ||
|
@@ -24,8 +24,8 @@ serde_bytes = "0.11" | |
[dev-dependencies] | ||
ethers = "2.0.10" | ||
hex = "0.4.3" | ||
ic-agent = "0.29.0" | ||
pocket-ic = "2.0.1" | ||
ic-agent = "0.36.0" | ||
pocket-ic = "3.1.0" | ||
siwe = "0.6" | ||
rand = "0.8.4" | ||
ring = "0.16.20" | ||
ring = "0.17.7" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters