-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 592 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 592 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 = ["xtask", "oryx-tui", "oryx-common"]
[workspace.package]
description = "TUI for sniffing network traffic using eBPF"
authors = ["Badr Badri <contact@pythops.com>"]
version = "0.8.0"
readme = "Readme.md"
license = "GPL-3.0"
edition = "2024"
repository = "https://github.com/pythops/oryx"
homepage = "https://github.com/pythops/oryx"
[workspace.dependencies]
network-types = { git = "https://github.com/vadorovsky/network-types", rev = "c6f9c28" }
[profile.release]
opt-level = 3
debug = false
lto = 'fat'
panic = 'abort'
codegen-units = 1
rpath = false