-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
56 lines (52 loc) · 1.28 KB
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]
resolver = "2"
members = [
"crates/nf-cli",
"crates/nf-shell",
"crates/nf-project",
"crates/nf-engine",
"crates/nf-runtime",
"crates/nf-source",
"crates/videocut-core",
"crates/videocut-download",
"crates/videocut-transcribe",
"crates/videocut-align",
"crates/videocut-cut",
"crates/nf-tts",
"crates/nf-guide",
"crates/nf-shell-mac",
"crates/nf-recorder",
"crates/nf-agent",
]
[workspace.package]
version = "0.4.0"
edition = "2024"
rust-version = "1.86"
license = "MIT"
repository = "https://github.com/ChaosRealmsAI/NextFrame"
authors = ["NextFrame Contributors"]
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
unreachable = "deny"
todo = "deny"
wildcard_imports = "deny"
[workspace.dependencies]
wry = "0.55"
tao = "0.35"
interprocess = { version = "2.4", features = ["tokio"] }
ctrlc = { version = "3", features = ["termination"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "io-util"] }
clap = { version = "4", features = ["derive", "cargo"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "2"
directories = "6"
once_cell = "1"
regex = "1"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"