forked from russellbanks/inno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 908 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 908 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
38
39
40
41
[package]
name = "innex"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
license.workspace = true
[[bin]]
path = "cli/src/main.rs"
name = "innex"
[workspace]
members = ["core"]
[workspace.package]
version = "0.4.2"
edition = "2024"
rust-version = "1.88"
repository = "https://github.com/russellbanks/inno"
license = "MIT OR Apache-2.0"
[dependencies]
anstream = "1.0.0"
anyhow = "1.0.100"
bitflags = "2.10.0"
camino = "1.1.12"
clap = { version = "4.5.60", features = ["derive"] }
crossterm = "0.29.0"
inno = { version = "0.4.2", path = "core", features = ["chrono"] }
itertools = { version = "0.14.0", default-features = false }
num-traits = "0.2.19"
ratatui = { version = "0.29.0", default-features = false, features = ["crossterm"] }
[features]
lzma-static = ["inno/lzma-static"]
[profile.release]
codegen-units = 1
lto = true
strip = true