-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 852 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
[package]
name = "arise"
version = "0.1.0"
license = "MIT"
description = "A RaInmeter (tm) Skin Evolver, a parameterized generator for rainmeter ini-files"
authors = ["Christian Lunau <[email protected]>"]
edition = "2021"
homepage = "https://github.com/clunion/arise"
repository = "https://github.com/clunion/arise"
readme = "README.md"
keywords = ["rust", "rust-lang", "rainmeter", "clap", "generator", "tool"]
categories = ["tools", "desktop", "monitoring"]
[[bin]]
name = "arise"
path = "src/main.rs"
[dependencies]
main_error = "0.1.2"
clap = "2.33.3"
flexi_logger = { version = "0.19", features = ["compress"]}
log = { version = "0.4", features = ["max_level_trace", "release_max_level_warn"] }
yansi = "0.5"
[features]
optimize = ["log/release_max_level_warn"]
default = ["optimize"]