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] |
5 | name = "slint-python" |
6 | version.workspace = true |
7 | authors.workspace = true |
8 | edition.workspace = true |
9 | license.workspace = true |
10 | description = "Slint Python integration" |
11 | repository.workspace = true |
12 | homepage.workspace = true |
13 | publish = false |
14 | rust-version.workspace = true |
15 | |
16 | [lib] |
17 | path = "lib.rs" |
18 | crate-type = ["cdylib" ] |
19 | |
20 | [dependencies] |
21 | i-slint-backend-selector = { workspace = true } |
22 | i-slint-core = { workspace = true } |
23 | slint-interpreter = { workspace = true, features = ["default" , "display-diagnostics" , "internal" ] } |
24 | pyo3 = { version = "0.20.0" , features = ["extension-module" , "indexmap" , "chrono" ] } |
25 | indexmap = { version = "2.1.0" } |
26 | chrono = "0.4" |
27 | spin_on = "0.1" |
28 | css-color-parser2 = { workspace = true } |
29 | |
30 | [package.metadata.maturin] |
31 | python-source = "slint" |
32 | |