Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

walletkit crate #17

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["uniffi-bindgen","walletkit-core"]
members = ["uniffi-bindgen","walletkit-core", "walletkit"]
resolver = "2"

[workspace.package]
Expand All @@ -12,6 +12,8 @@ homepage = "https://docs.world.org" # TODO: Update to specific WalletKit page
rust-version = "1.82"
repository = "https://github.com/worldcoin/walletkit"
exclude = ["tests/", "uniffi-bindgen/"]
keywords = ["ZKP", "WorldID", "World", "Identity", "Semaphore"]
categories = ["api-bindings", "cryptography::cryptocurrencies"]


[workspace.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions uniffi-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[package]
name = "uniffi-bindgen"
description = "Binding generation for WalletKit"
keywords = ["ZKP", "World ID", "World"]
categories = ["API bindings"]
publish = false

version.workspace = true
Expand All @@ -14,6 +12,8 @@ homepage.workspace = true
repository.workspace = true
exclude.workspace = true
readme.workspace = true
readme.keywords = true
readme.categories = true


[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions walletkit-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[package]
name = "walletkit-core"
description = "Reference implementation for the World ID Protocol. Core functionality to use a World ID."
keywords = ["ZKP", "World ID", "World"]
categories = ["API bindings", "Cryptography"]


version.workspace = true
Expand All @@ -14,6 +12,8 @@ homepage.workspace = true
repository.workspace = true
exclude.workspace = true
readme.workspace = true
readme.keywords = true
readme.categories = true


[lib]
Expand Down
19 changes: 19 additions & 0 deletions walletkit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
name = "walletkit"
description = "Reference implementation for World ID clients."


version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
exclude.workspace = true
readme.workspace = true
readme.keywords = true
readme.categories = true


# TODO: Add `walletkit-core` dependency once ready
1 change: 1 addition & 0 deletions walletkit/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading