Import Debian changes 2.1.0-1
Branches debian/bookworm
Tags debian/2.1.0-1
Showing
- .appveyor.yml 0 additions, 32 deletions.appveyor.yml
- .cargo_vcs_info.json 4 additions, 3 deletions.cargo_vcs_info.json
- .gitignore 0 additions, 3 deletions.gitignore
- .gitlab-ci.yml 0 additions, 10 deletions.gitlab-ci.yml
- Cargo.toml 39 additions, 10 deletionsCargo.toml
- Cargo.toml.orig 23 additions, 26 deletionsCargo.toml.orig
- README.md 8 additions, 5 deletionsREADME.md
- debian/cargo-checksum.json 1 addition, 1 deletiondebian/cargo-checksum.json
- debian/changelog 7 additions, 0 deletionsdebian/changelog
- debian/compat 1 addition, 1 deletiondebian/compat
- debian/control 9 additions, 8 deletionsdebian/control
- debian/copyright.debcargo.hint 8 additions, 4 deletionsdebian/copyright.debcargo.hint
- debian/tests/control 14 additions, 0 deletionsdebian/tests/control
- debian/watch 0 additions, 1 deletiondebian/watch
- src/argsiter.rs 3 additions, 4 deletionssrc/argsiter.rs
- src/globiter.rs 42 additions, 25 deletionssrc/globiter.rs
- src/lib.rs 18 additions, 16 deletionssrc/lib.rs
- src/parser.rs 122 additions, 82 deletionssrc/parser.rs
.appveyor.yml
deleted
100644 → 0
.gitignore
deleted
100755 → 0
.gitlab-ci.yml
deleted
100644 → 0
... | ... | @@ -3,31 +3,60 @@ |
# When uploading crates to the registry Cargo will automatically | ||
# "normalize" Cargo.toml files for maximal compatibility | ||
# with all versions of Cargo and also rewrite `path` dependencies | ||
# to registry (e.g. crates.io) dependencies | ||
# to registry (e.g., crates.io) dependencies. | ||
# | ||
# If you believe there's an error in this file please file an | ||
# issue against the rust-lang/cargo repository. If you're | ||
# editing this file be aware that the upstream Cargo.toml | ||
# will likely look very different (and much more reasonable) | ||
# If you are reading this file be aware that the original Cargo.toml | ||
# will likely look very different (and much more reasonable). | ||
# See Cargo.toml.orig for the original contents. | ||
[package] | ||
edition = "2018" | ||
name = "wild" | ||
version = "2.0.2" | ||
version = "2.1.0" | ||
authors = ["Kornel <kornel@geekhood.net>"] | ||
include = [ | ||
"/src/*.rs", | ||
"/Cargo.toml", | ||
"/LICENSE", | ||
"/README.md", | ||
] | ||
description = "Glob (wildcard) expanded command-line arguments on Windows" | ||
homepage = "https://crates.rs/crates/wild" | ||
homepage = "https://lib.rs/crates/wild" | ||
documentation = "https://docs.rs/wild" | ||
readme = "README.md" | ||
keywords = ["wildcards", "glob", "windows", "shell", "CommandLineToArgvW"] | ||
categories = ["command-line-interface"] | ||
license = "MIT" | ||
keywords = [ | ||
"wildcards", | ||
"glob", | ||
"windows", | ||
"shell", | ||
"CommandLineToArgvW", | ||
] | ||
categories = [ | ||
"command-line-interface", | ||
"os::windows-apis", | ||
] | ||
license = "Apache-2.0 OR MIT" | ||
repository = "https://gitlab.com/kornelski/wild" | ||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
all-features = true | ||
rustdoc-args = [ | ||
"--cfg", | ||
"docsrs", | ||
] | ||
[dev-dependencies.glob] | ||
version = "0.3" | ||
[target."cfg(windows)".dependencies.glob] | ||
version = "0.3" | ||
[badges.appveyor] | ||
repository = "pornel/wild" | ||
[badges.gitlab] | ||
repository = "kornelski/wild" | ||
[badges.maintenance] | ||
status = "passively-maintained" |
debian/tests/control
0 → 100644
Please register or sign in to comment