-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 821 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 821 Bytes
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
[package]
name = "mindmap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.38"
clap = { version = "4.5.8", features = ["derive"] }
clap_complete = "4.5.7"
config = "0.14.0"
dirs = "5.0.1"
inquire = { version = "0.7.5", features = ["date"] }
serde = "1.0.203"
[profile.dev]
debug = "line-tables-only"
lto = "off"
[profile.ci]
inherits = "dev"
incremental = false
[profile.release]
debug = "line-tables-only"
lto = "fat"
codegen-units = 1
# Workaround: https://github.com/rust-lang/cargo/issues/12457 which causes
# https://github.com/ipetkov/crane/issues/370
[profile.dev.build-override]
debug = false
[profile.ci.build-override]
debug = false
[profile.release.build-override]
debug = false