-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (31 loc) · 859 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
31
32
33
34
35
36
37
38
39
[package]
name = "fern-run"
version = "0.0.3"
authors = ["Felipe Sere <felipesere@gmail.com>"]
edition = "2018"
description = "A command runner. Its gives different parts of your mono-repo a unified interface to run certain tasks."
documentation = "https://github.com/felipesere/fern"
homepage = "https://github.com/felipesere/fern"
repository = "https://github.com/felipesere/fern"
readme = "README.md"
license = "MIT"
keywords = ["cli"]
categories = ["command-line-interface", "command-line-utilities"]
[dependencies]
ignore = "0.4.12"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8.11"
pico-args = "0.4.0"
dirs = "4.0.0"
anyhow = "1.0.28"
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
[dev-dependencies]
assert_cmd = "2.0.2"
predicates = "2.0.0"
assert_fs = "1.0.0"
[[bin]]
name = "fern"
path = "src/main.rs"