blob: 798878be54b5ed74443b4f3b1378560f02142395 (
plain)
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
|
[package]
name = "weareearth"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.97"
reqwest = { version = "0.12.15", features = [
"rustls-tls",
"gzip",
"brotli",
"zstd",
"http2",
], default-features = false }
tokio = { version = "1.44.2", features = ["full"] }
log = "0.4.27"
env_logger = "0.11.8"
prost-types = "0.13.5"
prost = "0.13.5"
xdg = "2.5.2"
glam = "0.30.1"
futures-util = "0.3.31"
clap = { version = "4.5.35", features = ["derive"] }
weareshared = { path = "../wearechat/shared" }
[build-dependencies]
prost-build = "0.13.5"
|