[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix typegen

Kasper (Mar 5, 2026, 1:28 PM +0100) 1b9e6223 e3dc36ce

+5 -1
+1
mobile/src-tauri/Cargo.toml
··· 1 1 [package] 2 2 name = "ferrum_mobile" 3 3 edition = "2024" 4 + default-run = "ferrum_mobile" 4 5 5 6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 6 7
+4 -1
mobile/src-tauri/src/lib.rs
··· 74 74 .export( 75 75 specta_typescript::Typescript::default() 76 76 .bigint(specta_typescript::BigIntExportBehavior::String), 77 - "./bindings.ts", 77 + std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")) 78 + .parent() // if this Rust file is inside src-tauri 79 + .unwrap() 80 + .join("bindings.ts"), 78 81 ) 79 82 .expect("Failed to export typescript bindings"); 80 83 specta_builder