From a2c193fb909705487c5fc1ec74cc9b94f8dfa806 Mon Sep 17 00:00:00 2001 From: rami3l Date: Sun, 7 Feb 2021 19:53:44 +0100 Subject: [PATCH] chore: remove `core` --- core/Cargo.toml | 52 ------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 core/Cargo.toml diff --git a/core/Cargo.toml b/core/Cargo.toml deleted file mode 100644 index 45d43450822..00000000000 --- a/core/Cargo.toml +++ /dev/null @@ -1,52 +0,0 @@ -# cargo-features = ["strip"] - -[package] -authors = ["Rami3L "] -description = "A pacman-like wrapper for many package managers." -edition = "2018" -name = "pacaptr" -version = "0.10.0" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[build-dependencies] -anyhow = "1.0.38" -itertools = "0.10.0" -prettytable-rs = "0.8.0" -regex = "1.4.3" - -[dev-dependencies] -xshell = "0.1.8" - -[dependencies] -async-trait = "0.1.42" -bytes = "1.0.1" -clap = "3.0.0-beta.2" -colored = "2.0.0" -confy = "0.4.0" -dirs = "3.0.1" -futures = "0.3.12" -is-root = "0.1.2" -lazy_static = "1.4.0" -regex = { version = "1.4.3", default-features = false, features = ["std", "perf"] } -serde = { version = "1.0.123", features = ["derive"] } -thiserror = "1.0.23" -tokio = { version = "1.1.1", features = ["io-std", "io-util", "macros", "process", "rt-multi-thread", "sync"] } -tokio-stream = "0.1.2" -tokio-util = { version = "0.6.3", features = ["codec"] } -which = "4.0.2" - -[package.metadata.deb] -copyright = "2020, Rami3L" -maintainer = "Rami3L " -# license-file = ["LICENSE", "4"] -assets = [ - ["target/release/pacaptr", "usr/bin/", "755"], - ["README.md", "usr/share/doc/pacaptr/README", "644"], -] -depends = "$auto" -extended-description = """\ -A Rust port of icy/pacapt, a wrapper for many package managers with \ -pacman-style command syntax.""" -priority = "optional" -section = "utility"