diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-30 11:46:28 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-30 11:46:28 +0200 |
commit | 35ae80f183904466667af73c7921b4ade399569a (patch) | |
tree | 3a7eec95debbd9ba292436ff989742b8a9b1dff4 /import/asset_token/Cargo.toml | |
parent | d6a039a10ac3c81d410beb9b648d29524ca1e278 (diff) | |
download | jellything-35ae80f183904466667af73c7921b4ade399569a.tar jellything-35ae80f183904466667af73c7921b4ade399569a.tar.bz2 jellything-35ae80f183904466667af73c7921b4ade399569a.tar.zst |
split base into asset_token and db
Diffstat (limited to 'import/asset_token/Cargo.toml')
-rw-r--r-- | import/asset_token/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/import/asset_token/Cargo.toml b/import/asset_token/Cargo.toml new file mode 100644 index 0000000..95615ce --- /dev/null +++ b/import/asset_token/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "jellyimport-asset-token" +version = "0.1.0" +edition = "2021" + +[dependencies] +jellycommon = { path = "../../common" } +jellycache = { path = "../../cache" } +serde = { version = "1.0.217", features = ["derive"] } +serde_yaml = "0.9.34" +log = { workspace = true } +sha2 = "0.10.8" +base64 = "0.22.1" +tokio = { workspace = true } +anyhow = "1.0.95" +bincode = "2.0.0-rc.3" +rand = "0.9.0" +serde_json = "1.0.138" +aes-gcm-siv = "0.11.1" +humansize = "2.1.3" |