aboutsummaryrefslogtreecommitdiff
path: root/client/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-08-02 01:03:16 +0200
committermetamuffin <metamuffin@disroot.org>2023-08-02 01:03:16 +0200
commit14e01792e33631d134fe895018d3bef5ea74a958 (patch)
tree5c4f0105140541cd479a58c1abb598caaee2d94b /client/Cargo.toml
parent6eafafe5297c54aa5cb38790c45ba189b47d755e (diff)
downloadjellything-14e01792e33631d134fe895018d3bef5ea74a958.tar
jellything-14e01792e33631d134fe895018d3bef5ea74a958.tar.bz2
jellything-14e01792e33631d134fe895018d3bef5ea74a958.tar.zst
move client code to its own crate
Diffstat (limited to 'client/Cargo.toml')
-rw-r--r--client/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/client/Cargo.toml b/client/Cargo.toml
new file mode 100644
index 0000000..a2bed77
--- /dev/null
+++ b/client/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "jellyclient"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+jellycommon = { path = "../common" }
+log = "0.4.19"
+reqwest = "0.11.18"
+anyhow = "1.0.72"
+serde_json = "1.0.104"