Skip to content

Commit

Permalink
Add libxmtp version to requests
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed Aug 29, 2024
1 parent ace8399 commit f2459ec
Show file tree
Hide file tree
Showing 22 changed files with 258 additions and 160 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ exclude = [
# See https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html#details
resolver = "2"

[workspace.package]
version = "0.0.1"

[workspace.dependencies]
anyhow = "1.0"
async-stream = "0.3"
Expand Down
14 changes: 7 additions & 7 deletions bindings_ffi/Cargo.lock

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

12 changes: 6 additions & 6 deletions bindings_node/Cargo.lock

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

10 changes: 4 additions & 6 deletions mls_validation_service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
edition = "2021"
name = "mls_validation_service"
version = "0.1.0"

[[bin]] # Bin to run the Validation Service
name = "mls-validation-service"
Expand All @@ -11,8 +10,8 @@ path = "src/main.rs"
clap = { version = "4.4.6", features = ["derive"] }
ed25519-dalek = { workspace = true, features = ["digest"] }
env_logger = "0.11"
hex = { workspace = true }
futures = { workspace = true }
hex = { workspace = true }
log = { workspace = true }
openmls = { workspace = true }
openmls_rust_crypto = { workspace = true }
Expand All @@ -24,7 +23,7 @@ tokio = { workspace = true, features = ["full"] }
tonic = { workspace = true }
warp = "0.3.6"
xmtp_id.workspace = true
xmtp_mls.workspace = true
xmtp_mls.workspace = true
xmtp_proto = { path = "../xmtp_proto", features = [
"proto_full",
"grpc",
Expand All @@ -34,9 +33,8 @@ xmtp_proto = { path = "../xmtp_proto", features = [

[dev-dependencies]
anyhow.workspace = true
ethers.workspace = true
ethers.workspace = true
openmls_basic_credential = { workspace = true, features = ["test-utils"] }
rand = { workspace = true }
sha2.workspace = true
xmtp_id = { workspace = true, features = ["test-utils"]}

xmtp_id = { workspace = true, features = ["test-utils"] }
5 changes: 2 additions & 3 deletions xmtp_api_grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
edition = "2021"
name = "xmtp_api_grpc"
version = "0.1.0"

[dependencies]
async-stream.workspace = true
base64 = "0.22"
futures.workspace = true
hex.workspace = true
log = { workspace = true, features = ["std"] }
pbjson-types.workspace = true
pbjson.workspace = true
pbjson-types.workspace = true
prost = { workspace = true, features = ["prost-derive"] }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
Expand All @@ -19,9 +18,9 @@ tonic = { workspace = true, features = [
"tls-roots",
"tls-webpki-roots",
] }
tracing.workspace = true
xmtp_proto = { path = "../xmtp_proto", features = ["proto_full", "grpc"] }
xmtp_v2 = { path = "../xmtp_v2" }
tracing.workspace = true

[dev-dependencies]
uuid = { version = "1.3.1", features = ["v4"] }
Loading

0 comments on commit f2459ec

Please sign in to comment.