-
Notifications
You must be signed in to change notification settings - Fork 7
feat: CRP-2844 CRP-2850 add a Motoko password manager backend and prepare to deploy to ICP Ninja #155
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
Merged
Merged
feat: CRP-2844 CRP-2850 add a Motoko password manager backend and prepare to deploy to ICP Ninja #155
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
e793d1e
...
altkdf 6ef57a0
remove debugging artifact
altkdf 0f9a756
workflow for rust.
altkdf 5628078
move part of readme
altkdf 3d789d0
add a word
altkdf 8f72ff1
minor renaming of the workflow
altkdf 30a1221
Merge branch 'main' into alex/motoko-password-manager
altkdf d46245c
changelog
altkdf 1b51d6f
restructure
altkdf dc3e217
workflow
altkdf e9a4e20
add import
altkdf 2874218
another import
altkdf 4b5006a
try to fix motoko format error
altkdf 1c3ac81
init arg in dfx.json
altkdf f0bcae1
add tslib
altkdf ebde6e6
Merge branch 'main' into alex/motoko-password-manager
altkdf 696a4e7
cargo check
altkdf 92c698a
remove npm install, since it is automatically invoked by dfx deploy
altkdf 82e4451
regenerate package-lock.json
altkdf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -10,3 +10,4 @@ license = "Apache-2.0" | |
|
|
||
| [dependencies] | ||
| base = "0.14.6" | ||
| ic-vetkeys = "0.2.0" | ||
This file contains hidden or 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 hidden or 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 hidden or 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
34 changes: 17 additions & 17 deletions
34
backend/rs/canisters/ic_vetkeys_encrypted_maps_canister/Cargo.toml
This file contains hidden or 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,28 +1,28 @@ | ||
| [package] | ||
| name = "ic-vetkeys-encrypted-maps-canister" | ||
| authors.workspace = true | ||
| description.workspace = true | ||
| documentation.workspace = true | ||
| edition.workspace = true | ||
| version.workspace = true | ||
| license.workspace = true | ||
| authors = ["DFINITY Stiftung"] | ||
| version = "0.1.0" | ||
| edition = "2021" | ||
| license = "Apache-2.0" | ||
| description = "# Basic Identity Based Encryption" | ||
| repository = "https://github.com/dfinity/vetkeys" | ||
| rust-version = "1.75.0" | ||
|
|
||
| [lib] | ||
| path = "src/lib.rs" | ||
| crate-type = ["cdylib"] | ||
|
|
||
| [dependencies] | ||
| candid = { workspace = true } | ||
| ic-cdk = { workspace = true } | ||
| ic-cdk-macros = { workspace = true } | ||
| ic-dummy-getrandom-for-wasm = { workspace = true } | ||
| ic-stable-structures = { workspace = true } | ||
| ic-vetkeys = { path = "../../ic_vetkeys" } | ||
| serde = { workspace = true } | ||
| candid = "0.10.2" | ||
| ic-cdk = "0.18.3" | ||
| ic-cdk-macros = "0.18.3" | ||
| ic-dummy-getrandom-for-wasm = "0.1.0" | ||
| ic-stable-structures = "0.6.8" | ||
| ic-vetkeys = "0.2.0" | ||
| serde = "1.0.217" | ||
|
|
||
| [dev-dependencies] | ||
| ic-vetkeys-test-utils = { path = "../../ic_vetkeys_test_utils" } | ||
| pocket-ic = { workspace = true } | ||
| rand = { workspace = true } | ||
| rand_chacha = { workspace = true } | ||
| pocket-ic = "9.0.0" | ||
| rand = "0.8.5" | ||
| rand_chacha = "0.3.1" | ||
| reqwest = "0.12.12" |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.