A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/pgpull 21 lines 423 B view raw
1[package] 2name = "raichu" 3version = "0.1.0" 4edition = "2024" 5 6[lib] 7crate-type = ["cdylib"] 8 9[dependencies] 10js-sys = "0.3.77" 11rand = "0.8.5" 12getrandom = { version = "0.2", features = ["js"] } 13symphonia = { version = "0.5.4", features = ["all"] } 14wasm-bindgen = "0.2.100" 15web-sys = { version = "0.3.77", features = [ 16 "AudioContext", 17 "AudioBuffer", 18 "AudioBufferSourceNode", 19] } 20serde_json = "1.0.140" 21base64 = "0.22.1"