forked from frida/frida-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (39 loc) · 1.08 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
38
39
[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/core/hello",
"examples/core/usb_device",
"examples/core/console_log",
]
# 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",
"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/memory_access_monitor",
"examples/core/hello",
"examples/core/usb_device",
"examples/core/console_log",
]