forked from peters/horizon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.67 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
[workspace]
resolver = "3"
members = ["crates/horizon-core", "crates/horizon-ui"]
[workspace.package]
version = "0.1.1"
edition = "2024"
rust-version = "1.88"
license = "MIT"
description = "GPU-accelerated terminal board — a visual workspace for managing multiple terminal sessions"
repository = "https://github.com/peters/horizon"
[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
struct_excessive_bools = "allow"
[workspace.dependencies]
horizon-core = { path = "crates/horizon-core", version = "0.1.1" }
thiserror = "2.0.18"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
profiling = "1.0.17"
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
serde_json = "1.0.149"
alacritty_terminal = "0.25.1"
eframe = { version = "0.33.3", default-features = false, features = ["default_fonts", "wgpu", "x11", "wayland"] }
egui = "0.33.3"
# Feature-only dependency: eframe/egui-wgpu keep using wgpu 27, so Horizon must
# unify the native backend features here when eframe default features are disabled.
wgpu = { version = "27.0.1", default-features = false, features = ["std", "vulkan", "gles", "metal", "dx12"] }
egui_commonmark = { version = "0.22.0", default-features = false, features = ["pulldown_cmark"] }
tempfile = "3.20.0"
rusqlite = { version = "0.39.0", features = ["bundled"] }
uuid = { version = "1.22.0", features = ["serde", "v4"] }
git2 = { version = "0.20", default-features = false }
regex-lite = "0.1"
[profile.release]
lto = true
strip = true
[profile.profiling]
inherits = "release"
debug = 1
strip = false