mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-15 00:45:02 +01:00
lol
This commit is contained in:
commit
a2bc92d651
10 changed files with 1548 additions and 0 deletions
25
test-cases/uwu/Cargo.lock
generated
Normal file
25
test-cases/uwu/Cargo.lock
generated
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "is-even"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "83d558b5cf9dbf1e6c224d9cea60821ad82e09092ade7aed6d83aef48ed382d0"
|
||||
dependencies = [
|
||||
"is-odd",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "is-odd"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5741cc4ac9f6105f6bb067d09bb5685dc255e5bdec6f3bf6d86f4bda6187d17e"
|
||||
|
||||
[[package]]
|
||||
name = "uwu"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"is-even",
|
||||
]
|
||||
11
test-cases/uwu/Cargo.toml
Normal file
11
test-cases/uwu/Cargo.toml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[workspace]
|
||||
|
||||
[package]
|
||||
name = "uwu"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
is-even = "1.0.0"
|
||||
5
test-cases/uwu/src/main.rs
Normal file
5
test-cases/uwu/src/main.rs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
use is_even::IsEven;
|
||||
|
||||
fn main() {
|
||||
println!("{}", 4.is_even());
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue