-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## tl;dr - Adds serialization and deserialization for IdentityUpdate - Adds a missing `inbox_id` field to a few of the action types - Scaffolds out the `Signature` types. Still need real verification of signatures and recovery addresses. - Rename the `IdentityUpdateBuilder` to `SignatureRequestBuilder` - Make current with final version of protos (moved the `inbox_id` to the `IdentityUpdate` instead of being on each action)
- Loading branch information
Showing
20 changed files
with
7,375 additions
and
1,452 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,41 @@ | ||
[package] | ||
edition = "2021" | ||
name = "xmtp_id" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow.workspace = true | ||
async-trait.workspace = true | ||
chrono.workspace = true | ||
ethers.workspace = true | ||
futures.workspace = true | ||
hex.workspace = true | ||
log.workspace = true | ||
tracing.workspace = true | ||
thiserror.workspace = true | ||
xmtp_cryptography.workspace = true | ||
xmtp_mls.workspace = true | ||
xmtp_proto.workspace = true | ||
openmls_traits.workspace = true | ||
openmls.workspace = true | ||
openmls_basic_credential.workspace = true | ||
openmls_rust_crypto.workspace = true | ||
openmls_traits.workspace = true | ||
prost.workspace = true | ||
rand.workspace = true | ||
serde.workspace = true | ||
async-trait.workspace = true | ||
futures.workspace = true | ||
sha2 = "0.10.8" | ||
rand.workspace = true | ||
hex.workspace = true | ||
ethers.workspace = true | ||
thiserror.workspace = true | ||
tracing.workspace = true | ||
xmtp_cryptography.workspace = true | ||
xmtp_mls.workspace = true | ||
xmtp_proto.workspace = true | ||
|
||
[dev-dependencies] | ||
tracing-subscriber.workspace = true | ||
tokio = { workspace = true, features = ["time"] } | ||
anyhow.workspace = true | ||
ctor = "0.2.5" | ||
ethers = { workspace = true, features = ["ws"] } | ||
futures = "0.3" | ||
jsonrpsee = { workspace = true, features = ["macros", "ws-client"] } | ||
regex = "1.10" | ||
serde_json.workspace = true | ||
surf = "2.3" | ||
tokio = { workspace = true, features = ["time"] } | ||
tokio-test = "0.4" | ||
tracing-subscriber.workspace = true |
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
Oops, something went wrong.