new file: Cargo.lock

modified:   Cargo.toml
	modified:   frida_cli/Cargo.toml
	modified:   frida_client/Cargo.toml
	modified:   frida_core/Cargo.toml
	modified:   frida_gui/Cargo.toml
	modified:   frida_lib/Cargo.toml
	modified:   frida_server/Cargo.toml
This commit is contained in:
Michael Wain 2024-12-08 02:09:17 +03:00
parent bdb34c29fc
commit ac30109672
8 changed files with 5735 additions and 53 deletions

5686
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,2 @@
[workspace] [workspace]
members = ["frida_core","frida_client","frida_server","frida_cli","frida_gui","frida_lib"] members = ["frida_core","frida_client","frida_server","frida_cli","frida_gui","frida_lib"]
[package]
name = "frida_vpn"
version = "0.2.0"
edition = "2021"
license-file = "LICENSE.md"
authors = ["alterwain"]
keywords = ["tun", "network", "tunnel", "vpn"]
categories = ["network-programming", "asynchronous"]
readme = "README.md"

View File

@ -1,11 +1,12 @@
[package] [package]
name = "frida_cli" name = "frida_cli"
version.workspace = true version = "0.2.0"
edition.workspace = true edition = "2021"
license-file.workspace = true license-file = "../LICENSE.md"
authors.workspace = true authors = ["alterwain"]
keywords.workspace = true keywords = ["tun", "network", "tunnel", "vpn"]
categories.workspace = true categories = ["network-programming", "asynchronous"]
readme.workspace = true readme = "../README.md"
workspace = "../"
[dependencies] [dependencies]

View File

@ -1,11 +1,12 @@
[package] [package]
name = "frida_client" name = "frida_client"
version.workspace = true version = "0.2.0"
edition.workspace = true edition = "2021"
license-file.workspace = true license-file = "../LICENSE.md"
authors.workspace = true authors = ["alterwain"]
keywords.workspace = true keywords = ["tun", "network", "tunnel", "vpn"]
categories.workspace = true categories = ["network-programming", "asynchronous"]
readme.workspace = true readme = "../README.md"
workspace = "../"
[dependencies] [dependencies]

View File

@ -1,12 +1,13 @@
[package] [package]
name = "frida_core" name = "frida_core"
version.workspace = true version = "0.2.0"
edition.workspace = true edition = "2021"
license-file.workspace = true license-file = "../LICENSE.md"
authors.workspace = true authors = ["alterwain"]
keywords.workspace = true keywords = ["tun", "network", "tunnel", "vpn"]
categories.workspace = true categories = ["network-programming", "asynchronous"]
readme.workspace = true readme = "../README.md"
workspace = "../"
[lib] [lib]
crate-type = ["cdylib"] crate-type = ["cdylib"]

View File

@ -1,11 +1,12 @@
[package] [package]
name = "frida_gui" name = "frida_gui"
version.workspace = true version = "0.2.0"
edition.workspace = true edition = "2021"
license-file.workspace = true license-file = "../LICENSE.md"
authors.workspace = true authors = ["alterwain"]
keywords.workspace = true keywords = ["tun", "network", "tunnel", "vpn"]
categories.workspace = true categories = ["network-programming", "asynchronous"]
readme.workspace = true readme = "../README.md"
workspace = "../"
[dependencies] [dependencies]

View File

@ -1,11 +1,12 @@
[package] [package]
name = "frida_lib" name = "frida_lib"
version.workspace = true version = "0.2.0"
edition.workspace = true edition = "2021"
license-file.workspace = true license-file = "../LICENSE.md"
authors.workspace = true authors = ["alterwain"]
keywords.workspace = true keywords = ["tun", "network", "tunnel", "vpn"]
categories.workspace = true categories = ["network-programming", "asynchronous"]
readme.workspace = true readme = "../README.md"
workspace = "../"
[dependencies] [dependencies]

View File

@ -1,11 +1,12 @@
[package] [package]
name = "frida_server" name = "frida_server"
version.workspace = true version = "0.2.0"
edition.workspace = true edition = "2021"
license-file.workspace = true license-file = "../LICENSE.md"
authors.workspace = true authors = ["alterwain"]
keywords.workspace = true keywords = ["tun", "network", "tunnel", "vpn"]
categories.workspace = true categories = ["network-programming", "asynchronous"]
readme.workspace = true readme = "../README.md"
workspace = "../"
[dependencies] [dependencies]