This repository was archived by the owner on Jun 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (46 loc) · 1.51 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (46 loc) · 1.51 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
################################################################################
# Workspace settings
################################################################################
[workspace]
resolver = "2" # see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
members = [
"xenith-core",
"xenith-vm",
"xenith-vmi",
"xenith-cli",
"xenith-debugger",
"xenith-scripting",
"xenith-redpill",
"xenith-gui",
]
exclude = [ "xenith-website" ]
[workspace.package]
edition = "2024"
rust-version = "1.85.0"
license = "GPL-3.0"
version = "0.1.0"
publish = false
authors = ["abel <67806187+theo-abel@users.noreply.github.com>"]
homepage = "<https://xenith.re>"
documentation = "<https://xenith.re/docs/>"
repository = "<https://github.com/rce-3/xenith/>"
keywords = ["virtualization", "detection", "vmi", "debugger", "xen", "hypervisor"]
[workspace.dependencies]
# Those dependencies are shared across all packages,
# so we define them here to avoid duplication.
log = "0.4.25"
thiserror = "2.0.11"
################################################################################
# Profile settings
################################################################################
[profile.release]
# enable link-time optimization, which can improve performance
# but also increase build time
lto = true
codegen-units = 1
opt-level = 3 # use better optimizations
debug = true # keep debug info in case of crash/bug
[profile.optimized-release]
inherits = "release"
debug = false
strip = true