-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (48 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
50 lines (48 loc) · 1.39 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
default-run = "xmtp_cli"
edition = "2024"
keywords = ["xmtp", "messaging", "web3", "group-chat"]
license.workspace = true
name = "xmtp_cli"
readme = "README.md"
repository = "https://github.com/xmtp/libxmtp"
version.workspace = true
description = "cli that can send and receive messages on XMTP"
[[bin]]
name = "xmtp_cli"
path = "cli-client.rs"
[dependencies]
alloy = { workspace = true, features = ["signer-mnemonic"] }
chrono.workspace = true
clap.workspace = true
color-eyre = "0.6"
futures.workspace = true
hex.workspace = true
openmls = { workspace = true }
owo-colors.workspace = true
prost.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
timeago = "0.4.1"
tokio.workspace = true
tracing = { workspace = true, features = ["valuable"] }
tracing-subscriber = { workspace = true, features = [
"json",
"valuable",
"env-filter",
"ansi",
"chrono",
] }
valuable = { version = "0.1", features = ["derive"] }
xmtp-workspace-hack = { version = "0.1", path = "../../crates/xmtp-workspace-hack" }
xmtp_api = { workspace = true }
xmtp_api_d14n.workspace = true
xmtp_common.workspace = true
xmtp_configuration.workspace = true
xmtp_content_types = { workspace = true }
xmtp_cryptography = { workspace = true }
xmtp_db = { workspace = true }
xmtp_id = { workspace = true }
xmtp_mls = { workspace = true }
xmtp_proto = { workspace = true }