forked from frida/frida-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (36 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[workspace]
resolver = "2"
members = [
"frida-gum-sys",
"frida-gum",
"frida-sys",
"frida",
"examples/gum/open",
"examples/gum/stalker",
"examples/gum/stalker_observer",
"examples/gum/hook_open",
"examples/gum/hook_instruction",
"examples/gum/debug_symbol",
"examples/gum/fast_interceptor",
"examples/gum/linux_no_std",
"examples/gum/memory_access_monitor",
"examples/gum/script",
"examples/core/hello",
"examples/core/usb_device",
"examples/core/console_log",
"examples/core/list_exports",
"examples/core/get_processes",
]
# We miss our linux_no_std example from the default members since `cargo check`
# and `cargo test` both attempt to link the `std` library into it in error.
default-members = ["frida-gum-sys", "frida-gum", "frida-sys", "frida"]
[workspace.package]
version = "0.13.7"
authors = [
"Keegan Saunders <[email protected]>",
"Shmarya Rubenstein <[email protected]>",
]
edition = "2021"
license = "wxWindows"
repository = "https://github.com/frida/frida-rust"
description = "Rust bindings for Frida"