mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-17 22:08:39 +00:00
28 lines
804 B
TOML
28 lines
804 B
TOML
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
[package]
|
|
name = "i-slint-common"
|
|
description = "Helper crate for sharing code & data structures between i-slint-core and slint-compiler"
|
|
authors.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
shared-fontique = ["dep:fontique", "dep:ttf-parser"]
|
|
|
|
[dependencies]
|
|
ttf-parser = { workspace = true, optional = true }
|
|
fontique = { workspace = true, optional = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|