-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "xchat"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
futures = "0.3"
chrono = "0.4"
crossterm = { version = "0.28.0", features = ["event-stream"]}
ratatui = "0.29.0"
tui-textarea = "0.7"
anyhow = "1"
argh = "0.1.12"
xmtp_mls = { git = "https://github.com/xmtp/libxmtp", branch = "main" }
xmtp_id = { git = "https://github.com/xmtp/libxmtp", branch = "main" }
xmtp_api_grpc = { git = "https://github.com/xmtp/libxmtp", branch = "main" }
xmtp_proto = { git = "https://github.com/xmtp/libxmtp", branch = "main" }
prost = "0.13"
ethers = "2"
hex = "0.4"
rand = "0.8"
walletconnect = "0.2.0"
tokio = { version = "1.35.0", features = ["macros", "rt-multi-thread", "time", "tracing", "sync"] }
tokio-stream = "0.1"
lazy_static = "1.4"
color-eyre = "0.6.2"
directories = "5"
tracing-error = "0.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
console-subscriber = "0.4"