mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
30 lines
876 B
TOML
30 lines
876 B
TOML
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
|
|
|
|
[package]
|
|
name = "slint-python"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Slint Python integration"
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
publish = false
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
i-slint-backend-selector = { workspace = true }
|
|
i-slint-core = { workspace = true }
|
|
slint-interpreter = { workspace = true, features = ["default", "display-diagnostics", "internal"] }
|
|
pyo3 = { version = "0.20.0", features = ["extension-module", "indexmap", "chrono"] }
|
|
indexmap = { version = "2.1.0" }
|
|
chrono = "0.4"
|
|
spin_on = "0.1"
|
|
|
|
[package.metadata.maturin]
|
|
python-source = "slint"
|