-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
51 lines (45 loc) · 1.41 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "cargo-ui"
version = "0.3.3"
authors = ["Slint Developers <[email protected]>"]
edition = "2021"
build = "build.rs"
license = "GPL-3.0-only"
description = "GUI for cargo"
categories = ["development-tools::cargo-plugins"]
keywords = ["cargo", "ui", "gui"]
repository = "https://github.com/slint-ui/cargo-ui"
resolver = "2"
[features]
slint-backend-default = ["slint/backend-default", "slint/renderer-femtovg"]
slint-backend-qt = ["slint/backend-qt"]
slint-backend-gl-all = ["slint/backend-winit", "slint/renderer-winit-femtovg"]
slint-backend-gl-wayland = ["slint/backend-winit-wayland", "slint/renderer-winit-femtovg"]
slint-backend-gl-x11 = ["slint/backend-winit-x11", "slint/renderer-winit-femtovg"]
default = ["slint-backend-default"]
[dependencies]
anyhow = "1.0"
cargo_metadata = "0.19"
crates-index = { version = "3", default-features = false, features = [ "git", "git-https" ] }
dunce = "1.0"
futures = "0.3"
itertools = "0.14"
open = "5.1"
rfd = { version = "0.15", default-features = false, features = [ "xdg-portal", "tokio" ] }
serde = "1.0"
serde_json = "1.0"
shlex = "1.1"
slint = { version = "1.9", default-features = false, features = [ "compat-1-2" ] }
tokio = { version = "1.24", features= ["full"] }
toml_edit = "0.22"
git2 = "0.20"
[build-dependencies]
slint-build = { version = "1.9" }
[profile.release]
lto = true
strip = true
opt-level = 3
panic = "abort"
codegen-units = 1
[profile.dev]
opt-level = 1