diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | fatcat-cli/Cargo.toml | 19 |
3 files changed, 12 insertions, 11 deletions
@@ -272,7 +272,7 @@ dependencies = [ [[package]] name = "fatcat-cli" -version = "0.3.0-dev" +version = "0.1.0-dev" dependencies = [ "anyhow", "assert_cmd", @@ -5,4 +5,4 @@ members = ["fatcat-openapi", "fatcat-cli"] lto = true codegen-units = 1 opt-level = "z" -panic = "abort" +#panic = "abort" diff --git a/fatcat-cli/Cargo.toml b/fatcat-cli/Cargo.toml index dbb114a..dca1a30 100644 --- a/fatcat-cli/Cargo.toml +++ b/fatcat-cli/Cargo.toml @@ -1,18 +1,17 @@ [package] name = "fatcat-cli" -version = "0.3.0-dev" +version = "0.1.0-dev" edition = "2018" authors = ["Bryan Newbold <bnewbold@robocracy.org>"] -license = "AGPL-3+" -#license-file = "../../LICENSE.AGPLv3.txt" +license = "GPL-3+" +#license-file = "../LICENSE.GPLv3.txt" description = "CLI tool for fatcat.wiki, an open digital catalog of research papers" -readme = "fatcat-cli/README.md" +readme = "README.md" homepage = "https://fatcat.wiki" -repository = "https://github.com/internetarchive/fatcat" +repository = "https://gitlab.com/ibnewbold/fatcat-cli" keywords = ["cli", "fatcat", "digital-library"] categories = ["command-line-utilities"] - [dependencies] data-encoding = "2.1" fatcat-openapi = { version = "*", path = "../fatcat-openapi", default-features = false, features = ["client"] } @@ -39,17 +38,19 @@ tempfile = "3" indicatif = "0.15" url = "*" - [dev-dependencies] assert_cmd = "1" - [package.metadata.deb] maintainer = "Bryan Newbold <bnewbold@robocracy.org>" depends = "$auto" section = "utility" priority = "optional" +extended-description = """" +Simple command-line interface to fatcat API (https://api.fatcat.wiki). Longer +description will go here. +""" assets = [ ["target/release/fatcat-cli", "usr/bin/", "755"], - ["fatcat-cli.1", "usr/share/man/man1/", "644"], + ["../extra/fatcat-cli.1", "usr/share/man/man1/", "644"], ] |