~/hooky

83970de91c425611c79fcb7c781033ea4a553528 — Arthur Melton 2 years ago
init
5 files changed, 30 insertions(+), 0 deletions(-)

A .gitignore
A command/Cargo.toml
A command/src/main.rs
A victim/Cargo.toml
A victim/src/main.rs
A .gitignore +8 -0
@@ 0,0 1,8 @@

/target


# Added by cargo
#
# already existing elements were commented out

#/target

A command/Cargo.toml +8 -0
@@ 0,0 1,8 @@

[package]
name = "hooky"
version = "0.1.0"
edition = "2021"

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

[dependencies]

A command/src/main.rs +3 -0
@@ 0,0 1,3 @@

fn main() {
    println!("Hello, world!");
}

A victim/Cargo.toml +8 -0
@@ 0,0 1,8 @@

[package]
name = "victim"
version = "0.1.0"
edition = "2021"

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

[dependencies]

A victim/src/main.rs +3 -0
@@ 0,0 1,3 @@

fn main() {
    println!("Hello, world!");
}