forked from chmln/i3-auto-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 820 Bytes
/
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
[package]
name = "i3-auto-layout"
description = "Automatic, optimal tiling for i3wm"
version = "0.3.6"
authors = ["Pando85 <[email protected]>"]
edition = "2018"
homepage = "https://github.com/pando85/i3-auto-layout"
repository = "https://github.com/pando85/i3-auto-layout"
readme = "README.md"
license = "MIT"
[dependencies]
tokio-i3ipc = "0.16.0"
tokio = { version = "1.37", default-features = false, features = ["rt-multi-thread", "macros", "sync"] }
anyhow = "1.0.83"
log = "0.4.21"
flexi_logger = { version = "0.29", default-features = false }
tokio-stream = "0.1.15"
[profile.release]
codegen-units = 1
opt-level = 3
lto = "fat"
panic = "abort"
strip = "symbols"
[dev-dependencies.cargo-husky]
version = "1.5"
default-features = false # Disable features which are enabled by default
features = ["user-hooks"]