Nothing is enough!

new file:   frida_cli/Cargo.toml
	new file:   frida_cli/src/main.rs
	new file:   frida_client/Cargo.toml
	new file:   frida_client/src/main.rs
	new file:   frida_gui/Cargo.toml
	new file:   frida_gui/src/main.rs
	new file:   frida_lib/Cargo.toml
	new file:   frida_lib/src/main.rs
	new file:   frida_server/Cargo.toml
	new file:   frida_server/src/main.rs
This commit is contained in:
Michael Wain 2024-12-08 01:53:01 +03:00
parent 52b7373fe3
commit bdb34c29fc
10 changed files with 70 additions and 0 deletions

11
frida_cli/Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "frida_cli"
version.workspace = true
edition.workspace = true
license-file.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
[dependencies]

3
frida_cli/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

11
frida_client/Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "frida_client"
version.workspace = true
edition.workspace = true
license-file.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
[dependencies]

3
frida_client/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

11
frida_gui/Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "frida_gui"
version.workspace = true
edition.workspace = true
license-file.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
[dependencies]

3
frida_gui/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

11
frida_lib/Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "frida_lib"
version.workspace = true
edition.workspace = true
license-file.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
[dependencies]

3
frida_lib/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

11
frida_server/Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "frida_server"
version.workspace = true
edition.workspace = true
license-file.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
[dependencies]

3
frida_server/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}