mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-06 19:45:29 +00:00
Create subproject oof
, a thin argparsing lib
And added it to the same workspace
This commit is contained in:
parent
3f97d7a699
commit
9fb48fd348
@ -4,14 +4,12 @@ version = "0.1.4"
|
|||||||
authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>", "João M. Bezerra <marcospb19@hotmail.com>"]
|
authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>", "João M. Bezerra <marcospb19@hotmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
homepage = "https://github.com/vrmiguel/ouch"
|
|
||||||
repository = "https://github.com/vrmiguel/ouch"
|
repository = "https://github.com/vrmiguel/ouch"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
keywords = ["decompression", "compression", "zip", "tar", "gzip"]
|
keywords = ["decompression", "compression", "zip", "tar", "gzip"]
|
||||||
categories = ["command-line-utilities", "compression", "encoding"]
|
categories = ["command-line-utilities", "compression", "encoding"]
|
||||||
description = "A command-line utility for easily compressing and decompressing files and directories."
|
description = "A command-line utility for easily compressing and decompressing files and directories."
|
||||||
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
@ -24,8 +22,13 @@ bzip2 = "0.4.2"
|
|||||||
flate2 = "1.0.14"
|
flate2 = "1.0.14"
|
||||||
zip = "0.5.11"
|
zip = "0.5.11"
|
||||||
|
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = true
|
lto = true
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
||||||
|
[workspace]
|
||||||
|
members = [
|
||||||
|
".",
|
||||||
|
"oof",
|
||||||
|
]
|
||||||
|
9
oof/Cargo.toml
Normal file
9
oof/Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
[package]
|
||||||
|
name = "oof"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["João M. Bezerra <marcospb19@hotmail.com>"]
|
||||||
|
edition = "2018"
|
||||||
|
description = "Ouch's argparsing library"
|
||||||
|
repository = "https://github.com/vrmiguel/ouch"
|
||||||
|
|
||||||
|
[dependencies]
|
7
oof/src/lib.rs
Normal file
7
oof/src/lib.rs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
assert_eq!(2 + 2, 4);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user