-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (25 loc) · 972 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 972 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
28
29
30
31
32
[workspace]
resolver = "3"
members = [
"crates/freedom",
"crates/library/freedom-build",
"crates/plugin/freedom-stdio",
"crates/plugin/freedom-notify",
"crates/plugin/freedom-winit",
"crates/plugin/freedom-cpal",
"crates/plugin/library",
]
[workspace.dependencies]
freedom = { path = "crates/freedom" }
freedom-build = { path = "crates/library/freedom-build" }
log = "0.4.28"
steel-core = { git = "https://github.com/mattwparas/steel", rev = "e378cba22f7d16d9441ac3c3fe006bf31fc8eef6", features = [
"markdown", # Augment help functionality with markdown rendering
"stacker", # Grow the stack dynamically during transduction
"triomphe", # Use triophe library instead of std Arc
"imbl", # Use im library for immutable data structures
"inline-captures", # Use smallvec instead of vec for closure captures
] }
# Optimize dependencies in dev builds
[profile.dev.package."*"]
opt-level = 3