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 = "figma_import" |
6 | description = "A figma file importer for Slint" |
7 | license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial" |
8 | authors.workspace = true |
9 | edition.workspace = true |
10 | homepage.workspace = true |
11 | repository.workspace = true |
12 | rust-version.workspace = true |
13 | version.workspace = true |
14 | publish = false |
15 | |
16 | |
17 | [[bin]] |
18 | name = "figma_import" |
19 | path = "src/main.rs" |
20 | |
21 | |
22 | [dependencies] |
23 | float-cmp = "0.9.0" |
24 | clap = { version = "4.0" , features = ["derive" , "wrap_help" ] } |
25 | reqwest = { version = "0.11" , features = ["json" , "stream" ] } |
26 | tokio = { version = "1" , features = ["full" ] } |
27 | futures = "0.3" |
28 | serde = { version = "1.0.123" , features = ["derive" ] } |
29 | serde_json = "1" |
30 | smart-default = "0.7" |
31 | derive_more = "0.99" |
32 | |