Cargo.toml (555B)
1 [package] 2 name = "radroots_field_ffi" 3 version.workspace = true 4 edition.workspace = true 5 authors = ["Radroots Authors"] 6 rust-version.workspace = true 7 license.workspace = true 8 publish = false 9 10 [lib] 11 crate-type = ["staticlib", "cdylib"] 12 13 [lints.rust] 14 unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] } 15 16 [[bin]] 17 name = "uniffi-bindgen" 18 path = "bin/uniffi-bindgen.rs" 19 20 [build-dependencies] 21 uniffi_build = { workspace = true } 22 23 [dependencies] 24 radroots_field_core = { workspace = true } 25 uniffi = { workspace = true, features = ["cli"] }