native-tools/Cargo.toml

31 lines
669 B
TOML

[package]
name = "xivchat-native-tools"
version = "1.0.0"
authors = ["Anna Clemenes <git@annaclemens.io>"]
edition = "2018"
resolver = "2"
[lib]
name = "xivchat_native_tools"
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cstr_core = "0.2"
unicode-linebreak = "0.1"
unicode-segmentation = "1"
[dependencies.libc]
version = "0.2"
default-features = false
# build with
# cargo +nightly build --release -Z build-std --target x86_64-pc-windows-msvc
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
# https://github.com/rust-lang/cargo/issues/7359
# panic = 'abort'