diff options
author | metamuffin <metamuffin@disroot.org> | 2023-08-06 12:52:42 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-08-06 12:52:42 +0200 |
commit | 8551bf2e34d9543fa41a83fae785ed81d6a6c10f (patch) | |
tree | aaa79d1572b253c35576685945280438fe68f4d4 /base/Cargo.toml | |
parent | cd366dfdfad18b38c4e542e6db61ced3929d42f9 (diff) | |
download | jellything-8551bf2e34d9543fa41a83fae785ed81d6a6c10f.tar jellything-8551bf2e34d9543fa41a83fae785ed81d6a6c10f.tar.bz2 jellything-8551bf2e34d9543fa41a83fae785ed81d6a6c10f.tar.zst |
move shared server code to own crate
Diffstat (limited to 'base/Cargo.toml')
-rw-r--r-- | base/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/base/Cargo.toml b/base/Cargo.toml new file mode 100644 index 0000000..b9fba7e --- /dev/null +++ b/base/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "jellybase" +version = "0.1.0" +edition = "2021" + +[dependencies] +jellycommon = { path = "../common" } +serde_json = "1.0.104" +log = "0.4.19" +sha2 = "0.10.7" +base64 = "0.21.2" |