-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 667 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[workspace]
resolver = "2"
members = [
"frida-gum-sys",
"frida-gum",
"frida-sys",
"frida",
"examples/core/*",
"examples/gum/*",
]
# 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.17.0"
authors = [
"Keegan Saunders <keegan@undefinedbehaviour.org>",
"Shmarya Rubenstein <github@shmarya.net>",
]
edition = "2021"
license = "wxWindows"
repository = "https://github.com/frida/frida-rust"
description = "Rust bindings for Frida"