-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
71 lines (63 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "kanbanrs"
version = "0.2.5"
edition = "2021"
repository = "https://github.com/epsilon-phase/kanbanrs/"
authors = ["Violet White"]
description = "A basic kanban task manager written with egui"
homepage = "https://github.com/epsilon-phase/kanbanrs/"
license = 'MIT'
[package.metadata.wix]
upgrade-guid = "08F7518F-464F-44FF-A58D-1E48F52F59DA"
path-guid = "1E655838-3829-48A6-9F58-DCA6D556746F"
license = false
eula = false
[dependencies]
eframe = { version = "0.30.0", features = ["persistence"] }
epaint = "0.30.0"
chrono = { version = "0.4.39", features = ["serde"] }
env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
] }
serde = { version = "~1.0", features = ["derive"] }
serde_json = { version = "~1.0" }
rfd = { version = "0.14.1" }
nucleo-matcher = { version = "0.3.1" }
layout-rs = "0.1.2"
clap = { version = "4.5.19", features = ["derive"] }
parking_lot = { version = "0.12.3", features = ["serde"] }
circular-buffer = "0.1.9"
log = "0.4.22"
[target.'cfg(unix)'.dependencies]
xdg = "~2.5.0"
[profile.small_as_can_be]
inherits = "release"
strip = true
opt-level = "s"
lto = true
panic = "abort"
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["homebrew", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false