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