Add support for OpenWRT
[pulga.git] / Cargo.toml
blob8a41a79529bb8081a61d6ccc4eb8d332c6d1fd40
1 [package]
2 name = "pulga"
3 version = "0.1.0"
4 authors = ["Carmesim Project <36349314+vrmiguel@users.noreply.github.com>"]
5 edition = "2018"
7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9 [dependencies]
10 libc = "0.2"
11 termion = "1.5"
12 sugars = "3.0"
13 smallvec = "1.5"
14 phf = { version = "0.8", features = ["macros"] }
15 x11 = { version = "2.18.2", optional = true }
17 [features]
18 use_xlib = ["x11"]
20 [profile.release]
21 lto = true
22 codegen-units = 1
23 opt-level = 3