Files
wfassoc/wfassoc-cdylib/Cargo.toml
T

35 lines
958 B
TOML
Raw Normal View History

2025-10-04 22:04:30 +08:00
[package]
name = "wfassoc-cdylib"
2025-10-04 22:04:30 +08:00
version = "0.1.0"
authors = ["yyc12345"]
edition = "2024"
description = "The dynamic library exposed for C/C++ users reading or manipulating Windows file assocation."
license = "MIT"
2025-10-04 22:04:30 +08:00
2025-10-18 09:55:08 +08:00
[lib]
crate-type = ["cdylib"]
2025-10-04 22:04:30 +08:00
[dependencies]
thiserror = { workspace = true }
sarasacw-omrf = { git = "https://github.com/SarasasChipWorkshop/sarasacw-omrf.git"}
# sarasacw-omrf = { version="1.0.0", git = "https://github.com/SarasasChipWorkshop/sarasacw-omrf.git", tag = "omrf/1.0.0" }
2025-10-04 22:04:30 +08:00
wfassoc = { path="../wfassoc" }
2026-05-09 16:27:04 +08:00
slotmap = "1.1.1"
2026-05-15 16:00:54 +08:00
num_enum = "0.7.6"
[profile.release]
# Any panics is seen as `std::abort` in production environment.
panic = "abort"
[package.metadata.omrf]
min_version = "1.0.0"
headers = [
{ from = "cbinding/*.h", to = "" }
]
[package.metadata.omrf.cmake]
namespace_name = "wfassoc"
target_name = "wfassoc"
[package.metadata.omrf.pkgconfig]
id = "wfassoc"
name = "Windows file association manipulation library"