cargo-packager
cargo-packager copied to clipboard
target specific cargo.toml metadata
exaample
[target.'x86_64-unknown-linux-gnu'.package.metadata.packager]
icons = ["build/linux/icons/*"]
[target.'cfg(target_os = "macos")'.package.metadata.packager]
icons = ["build/macos/icons/*"]
can you expand your question a bit? i'm not sure i get what you're asking for here.
The meaning is that during compilation, we can use the target tag to assign specific parameters
ah okay, i get it