diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-07 02:25:21 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-07 02:25:21 +0200 |
commit | f08eedf7fd7a40c5681316a332b1d6386f2f14c7 (patch) | |
tree | c5006dc582f23d6085d7b30a8c26b35432fa2071 /Cargo.toml | |
download | weareearth-f08eedf7fd7a40c5681316a332b1d6386f2f14c7.tar weareearth-f08eedf7fd7a40c5681316a332b1d6386f2f14c7.tar.bz2 weareearth-f08eedf7fd7a40c5681316a332b1d6386f2f14c7.tar.zst |
a
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..becffc1 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "weareearth" +version = "0.1.0" +edition = "2024" + +[dependencies] +anyhow = "1.0.97" +reqwest = "0.12.15" +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" + +weareshared = { path = "../wearechat/shared" } + +[build-dependencies] +prost-build = "0.13.5" |