blob: f8ee0eae995aac11b8436044a3ec96f43eafba59 (
plain)
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
|
[package]
name = "cargo-ebuild"
version = "0.1.6-pre"
authors = ["Doug Goldstein <cardoe@cardoe.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/cardoe/cargo-ebuild"
homepage = "https://github.com/cardoe/cargo-ebuild"
documentation = "https://github.com/cardoe/cargo-ebuild"
readme = "README.md"
keywords = ["cargo-subcommand", "ebuild", "gentoo"]
categories = ["command-line-utilities"]
description = """
Generates an ebuild for a package using the in-tree eclasses.
"""
[[bin]]
name = "cargo-ebuild"
path = "src/main.rs"
[lib]
name = "cargo_ebuild"
path = "src/lib.rs"
[badges]
travis-ci = { repository = "cardoe/cargo-ebuild" }
[dependencies]
cargo = "^0.21"
serde = "1"
serde_derive = "1"
time = "^0.1"
|