Skip to content

Commit

Permalink
last fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Feb 8, 2024
1 parent 4e9ee4d commit 073ee34
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 32 deletions.
61 changes: 35 additions & 26 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ thiserror = "1.0"
ethers = { version = "2.0.11", features = ["abigen"] }
ctor = "0.2"
lib-didethresolver = { git = "https://github.com/xmtp/didethresolver", branch = "main" }
gateway-types = { path = "./gateway-types" }
xps-types = { path = "./xps-types" }
rustc-hex = "2.1"
hex = "0.4"
2 changes: 1 addition & 1 deletion lib-xps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ thiserror.workspace = true
ethers = { workspace = true, features = ["ws"] }
ctor.workspace = true
lib-didethresolver.workspace = true
gateway-types.workspace = true
xps-types.workspace = true
hex.workspace = true
rand = "0.8.5"
tokio-stream = { version = "0.1", features = ["net"] }
Expand Down
2 changes: 1 addition & 1 deletion lib-xps/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use lib_didethresolver::{
did_registry::RegistrySignerExt,
types::{DidUrl, KeyEncoding, XmtpAttribute, XmtpKeyPurpose, NULL_ADDRESS},
};
use xps_gateway::rpc::*;
use lib_xps::rpc::*;

use ethers::types::{Address, U256};
use xps_types::{Message, Status};
Expand Down
2 changes: 1 addition & 1 deletion lib-xps/tests/integration_util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use std::{
use tokio::time::timeout as timeout_tokio;
use tracing_subscriber::{fmt, layer::SubscriberExt, util::SubscriberInitExt, EnvFilter, Registry};

use xps_gateway::{
use lib_xps::{
types::{GatewayContext, GatewaySigner},
XpsMethods, XpsServer,
};
Expand Down
2 changes: 1 addition & 1 deletion xps-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "gateway-types"
name = "xps-types"
version = "0.1.0"
edition = "2021"

Expand Down
3 changes: 2 additions & 1 deletion xps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
lib-xps = { path = "../lib-xps" }
anyhow.workspace = true
tokio.workspace = true
lib-xps = { path = "../lib-xps" }
clap = { version = "4.4.18", features = ["derive"] }

0 comments on commit 073ee34

Please sign in to comment.