2
Fork 0
Code Issues 1 Pull requests 2 Wiki Activity
Var Dump:
dumpVar: only available in dev mode
Mailing List
dt-plugin-template/Cargo.toml
Renovate 4638619f35
All checks were successful
lint/clippy Check for common mistakes and opportunities for code improvement
build Build for the target platform
Update Rust crate bindgen to 0.70.0
2024-08-19 10:47:30 +00:00

25 lines
554 B
TOML

[package]
name = "dt-plugin-template"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2.144"
[build-dependencies]
bindgen = "0.70.0"
[lib]
crate-type = ["cdylib", "lib"]
[profile.release]
strip = "debuginfo"
# The MSVC toolchain cannot handle LTO properly. Some symbol related to
# panic unwind would always be missing.
# So we use a separate profile for when we can compile with LTO.
[profile.release-lto]
inherits = "release"
lto = true