-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
29 lines (25 loc) · 873 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 = "shellfn"
version = "0.1.1"
authors = ["Marcin Sas-Szymanski <[email protected]>"]
description = "Attribute-like proc macro which reduces the amount of code required to call shell commands and parse the results"
keywords = ["shell", "command", "bash"]
categories = ["command-line-interface", "os"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/synek317/shellfn"
documentation = "https://docs.rs/shellfn"
edition = "2018"
[workspace]
members = [
"shellfn-attribute",
"shellfn-core"
]
[badges]
travis-ci = { repository = "synek317/shellfn", branch = "master" }
[lib]
doctest = false
path = "src/lib.rs"
[dependencies]
shellfn-attribute = { path = "./shellfn-attribute", version = "0.1.1" }
shellfn-core = { path = "./shellfn-core", version = "0.1.1" }