Skip to content

Commit

Permalink
chore(deps): update Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed Feb 3, 2021
1 parent 1cd6401 commit 5e5df44
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 41 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 40 additions & 36 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,67 +1,71 @@
# cargo-features = ["strip"]

[package]
authors = ["Rami3L <[email protected]>"]
authors = ["Rami3L <[email protected]>"]
description = "A pacman-like wrapper for many package managers."
edition = "2018"
include = ["LICENSE", "Cargo.toml", "src/**/*.rs", "build.rs"]
name = "pacaptr"
version = "0.10.0"
edition = "2018"
include = ["LICENSE", "Cargo.toml", "src/**/*.rs", "build.rs"]
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"
anyhow = "1.0.38"
itertools = "0.10.0"
prettytable-rs = "0.8.0"
regex = "1.4.3"
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"]}
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"
tokio-util = { version = "0.6.3", features = ["codec"] }
which = "4.0.2"

[package.metadata.deb]
copyright = "2020, Rami3L"
copyright = "2020, Rami3L"
maintainer = "Rami3L <[email protected]>"
# license-file = ["LICENSE", "4"]
assets = [
assets = [
["target/release/pacaptr", "usr/bin/", "755"],
["README.md", "usr/share/doc/pacaptr/README", "644"],
]
depends = "$auto"
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"
priority = "optional"
section = "utility"

[workspace]
members = [
".",
"xtask",
]
members = [".", "xtask"]

[profile.release]
codegen-units = 1
debug = 0
lto = true
opt-level = "z"
panic = "abort"
debug = 0
lto = true
opt-level = "z"
panic = "abort"
# strip = "symbols"
6 changes: 3 additions & 3 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
authors = ["rami3l <[email protected]>"]
edition = "2018"
name = "xtask"
name = "xtask"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.38"
clap = "3.0.0-beta.2"
regex = { version = "1.4.3", default-features = false, features = ["std", "perf"] }
clap = "3.0.0-beta.2"
regex = { version = "1.4.3", default-features = false, features = ["std", "perf"] }
xshell = "0.1.8"

0 comments on commit 5e5df44

Please sign in to comment.