native-tools/Cargo.toml

31 lines
669 B
TOML
Raw Normal View History

2021-06-07 00:37:28 +00:00
[package]
name = "xivchat-native-tools"
version = "1.0.0"
authors = ["Anna Clemenes <git@annaclemens.io>"]
edition = "2018"
2021-06-20 22:21:15 +00:00
resolver = "2"
2021-06-07 00:37:28 +00:00
[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]
2021-06-20 22:21:15 +00:00
cstr_core = "0.2"
2021-06-07 00:37:28 +00:00
unicode-linebreak = "0.1"
unicode-segmentation = "1"
2021-06-20 22:21:15 +00:00
[dependencies.libc]
version = "0.2"
default-features = false
2021-06-07 00:37:28 +00:00
# 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'