1# Copyright © SixtyFPS GmbH <info@slint.dev>
2# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
3
4[package]
5name = "slint-python"
6version.workspace = true
7authors.workspace = true
8edition.workspace = true
9license.workspace = true
10description = "Slint Python integration"
11repository.workspace = true
12homepage.workspace = true
13publish = false
14rust-version.workspace = true
15
16[lib]
17path = "lib.rs"
18crate-type = ["cdylib"]
19
20[dependencies]
21i-slint-backend-selector = { workspace = true }
22i-slint-core = { workspace = true }
23slint-interpreter = { workspace = true, features = ["default", "display-diagnostics", "internal"] }
24pyo3 = { version = "0.20.0", features = ["extension-module", "indexmap", "chrono"] }
25indexmap = { version = "2.1.0" }
26chrono = "0.4"
27spin_on = "0.1"
28css-color-parser2 = { workspace = true }
29
30[package.metadata.maturin]
31python-source = "slint"
32