Skip to content

Commit

Permalink
xdbg (#1269)
Browse files Browse the repository at this point in the history
* persistent identity generation

* identity generation works
  • Loading branch information
insipx authored Nov 21, 2024
1 parent 6bfd4e8 commit c7d8381
Show file tree
Hide file tree
Showing 39 changed files with 2,963 additions and 29 deletions.
3 changes: 2 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ b = "build"
c = "check"
t = "test"
r = "run"
xli = "run --bin xmtp_cli"
xli = "run --bin xmtp_cli --"
xdbg = "run --release --bin xdbg --"

[build]
rustflags = ["--cfg", "tracing_unstable"]
208 changes: 208 additions & 0 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ members = [
"bindings_wasm",
"bindings_node",
"bindings_ffi",
"xtask"
"xtask",
"xmtp_debug"
]

# Make the feature resolver explicit.
Expand Down Expand Up @@ -67,7 +68,7 @@ tokio = { version = "1.35.1", default-features = false }
# - https://github.com/hyperium/tonic/pull/1974
# - https://github.com/rustls/rustls-platform-verifier/issues/58
tonic = { version = "0.12", default-features = false }
tracing = { version = "0.1", features = ["log", "release_max_level_debug"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false }
diesel = { version = "2.2", default-features = false }
diesel-wasm-sqlite = "0.0.1"
Expand All @@ -91,6 +92,7 @@ console_error_panic_hook = "0.1"

# Internal Crate Dependencies
xmtp_cryptography = { path = "xmtp_cryptography" }
xmtp_api_grpc = { path = "xmtp_api_grpc" }
xmtp_id = { path = "xmtp_id" }
xmtp_mls = { path = "xmtp_mls" }
xmtp_proto = { path = "xmtp_proto" }
Expand Down
2 changes: 2 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ allow = [
"CC0-1.0",
"BSD-2-Clause",
"Unicode-3.0",
"Zlib",
"BSL-1.0"
]
confidence-threshold = 1.0

Expand Down
2 changes: 2 additions & 0 deletions xmtp_cryptography/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ wasm-bindgen-futures.workspace = true

[features]
ws = ["ethers/ws"]
# Expose private keys in addition to public
exposed-keys = []

[dev-dependencies]
openmls_basic_credential = { workspace = true, features = ["test-utils"] }
Expand Down
Loading

0 comments on commit c7d8381

Please sign in to comment.