aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 11a627cb4fbdd4cf534d365bb256c0023dc599ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[workspace]
members = ["lib/*", "crates/*"]
resolver = "2"

[workspace.package]
edition = "2024"
# Everything under crates/* is GPLv3+; everything under lib/* is under LGPLv3+.
license = "GPLv3+ AND LGPLv3+"
authors = ["Miquel Sabaté Solà <mikisabate@gmail.com>"]

[workspace.dependencies]
xixanta = { path = "./lib/xixanta", version = "0.1.0" }
header = { path = "./lib/header", version = "0.1.0" }
vnf = { path = "./lib/vnf", version = "0.1.0" }

[profile.release]
codegen-units = 1
lto = true