[package] name = "mssf-com" version = "0.0.15" edition = "2021" license = "MIT" description = "Rust for Azure Service Fabric. The COM base layer." documentation = "https://learn.microsoft.com/en-us/azure/service-fabric/" repository = "https://github.com/Azure/service-fabric-rs" readme = "README.md" authors = ["youyuanwu@outlook.com"] include = [ "**/*.rs", "Cargo.toml", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [package.metadata.docs.rs] default-target = "x86_64-pc-windows-msvc" targets = [] [target.'cfg(windows)'.dependencies] # this dep is required on windows to have the support libs. mssf-metadata = { version = "0.0.1", optional = true } [target.'cfg(unix)'.dependencies] mssf-pal = { path = "../pal" , version = "0.0.15"} [dependencies] windows-core = "0.57" [dependencies.windows] version = "0.57" features = [ "Win32_Foundation", "implement" ] [features] default = ["bundled_libs"] bundled_libs = ["dep:mssf-metadata"]