-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 713 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 713 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
[package]
name = "climer"
version = "0.7.1"
authors = ["Noah Rosenzweig <rosenzweig.noah@gmail.com>"]
edition = "2018"
description = "CLI timer app"
readme = "README.md"
repository = "https://github.com/Noah2610/climer"
keywords = ["timer", "cli", "command-line"]
categories = ["command-line-utilities"]
license = "MIT"
[dependencies]
clap = { version = "2.32.0", optional = true }
climer_derive = { path = "./climer_derive", version = "0.1.0" }
regex = { version = "1.1.0", optional = true }
serde = { version = "1.0.89", optional = true }
[features]
default = ["cli"]
cli = ["clap", "parser"]
serialize = ["serde"]
parser = ["regex"]
[[bin]]
name = "climer"
path = "app/main.rs"
required-features = ["cli"]