-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
57 lines (49 loc) · 1.43 KB
/
Cargo.toml
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]
members = [
"crates/lib",
"crates/bin",
"crates/command",
"crates/app",
"crates/tui",
"crates/wasm-types",
# "crates/wasm-blueprints/rust",
]
default-members = [
"crates/lib",
"crates/bin",
"crates/command",
"crates/app",
"crates/tui",
"crates/wasm-types",
# "crates/wasm-blueprints/rust",
]
resolver = "2"
[workspace.package]
version = "0.0.2"
edition = "2021"
authors = ["Yann Prono <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/MAIF/yozefu"
repository = "https://github.com/MAIF/yozefu.git"
license = "Apache-2.0"
[workspace.dependencies]
lib = { package = "yozefu-lib", path = "crates/lib/", version = "0.0.2" }
app = { package = "yozefu-app", path = "crates/app/", version = "0.0.2" }
command = { package = "yozefu-command", path = "crates/command/", version = "0.0.2" }
yozefu = { package = "yozefu", path = "crates/bin/", version = "0.0.2" }
tui = { package = "yozefu-tui", path = "crates/tui/", version = "0.0.2" }
wasm-types = { package = "wasm-types", path = "crates/wasm-types/", version = "0.0.2" }
[profile.release]
opt-level = 3
debug = "none"
debug-assertions = false
overflow-checks = true
strip = true
# lto = "fat"
panic = "abort"
incremental = false
[workspace.metadata.release]
shared-version = true
tag-message = "chore: Release version v{{version}}"
pre-release-commit-message = "chore: Release version v{{version}}"
tag-name = "{{version}}"