-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 763 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
25
26
27
[workspace]
members = ["./crates/*", "./examples/*"]
resolver = "3"
[workspace.package]
version = "0.21.0"
edition = "2024"
license = "MIT"
authors = ["Nanashi. <sevenc7c.com>"]
description = "AviUtl2 SDK for Rust"
repository = "https://github.com/sevenc-nanashi/aviutl2-rs"
publish = false
[workspace.dependencies]
aviutl2 = { path = "./crates/aviutl2", version = "0.21.0" }
aviutl2-sys = { path = "./crates/aviutl2-sys", version = "0.21.0" }
aviutl2-macros = { path = "./crates/aviutl2-macros", version = "0.21.0" }
aviutl2-alias = { path = "./crates/aviutl2-alias", version = "0.21.0" }
aviutl2-eframe = { path = "./crates/aviutl2-eframe", version = "0.21.0" }
mplus = { path = "./examples/mplus" }
[profile.release]
lto = true
[profile.bench]
lto = true