-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
166 lines (144 loc) · 4.09 KB
/
Cargo.toml
File metadata and controls
166 lines (144 loc) · 4.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
[workspace]
members = [
"neomacs-bin",
"neomacs-display-runtime",
"neomacs-display-protocol",
"neomacs-layout-engine",
"neomacs-renderer-wgpu",
"neovm-gc",
"neovm-core",
"neovm-host-abi",
"neovm-executor",
"neovm-oracle-tests",
"neovm-worker",
"neomacs-tui-tests",
"neomacs-melpa-tests",
"xtask",
]
default-members = [
"neomacs-bin",
"xtask",
]
exclude = ["neovm-compiler"]
resolver = "2"
[workspace.package]
version = "0.0.2"
edition = "2024"
authors = ["Eval Exec <execvy@gmail.com>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/eval-exec/neomacs"
[workspace.dependencies]
# Internal crates
neovm-core = { path = "neovm-core", version = "0.0.2", default-features = false }
neovm-gc = { path = "neovm-gc", version = "0.0.2" }
neovm-host-abi = { path = "neovm-host-abi", version = "0.0.2" }
neovm-executor = { path = "neovm-executor", version = "0.0.2" }
neovm-oracle-tests = { path = "neovm-oracle-tests", version = "0.0.2" }
neomacs-display-runtime = { path = "neomacs-display-runtime", version = "0.0.2", default-features = false }
neomacs-display-protocol = { path = "neomacs-display-protocol", version = "0.0.2", default-features = false }
neomacs-layout-engine = { path = "neomacs-layout-engine", version = "0.0.2", default-features = false }
neomacs-renderer-wgpu = { path = "neomacs-renderer-wgpu", version = "0.0.2", default-features = false }
# Logging / tracing
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "registry"] }
tracing-log = "0.2"
tracing-appender = "0.2"
# Concurrency & threading
crossbeam-channel = "0.5"
crossbeam-deque = "0.8"
rayon = "1"
# FFI / system
libc = "0.2"
notify = "8"
fs4 = { version = "1", features = ["sync"] }
sysinfo = "0.39"
# Crypto
sha1 = "0.11"
sha2 = "0.11"
# Misc
regex = "1"
rustc-hash = "2"
num_enum = "0.7.6"
strum = { version = "0.28", features = ["derive"] }
unicode_names2 = "2.0.0"
unicode-script = "0.5"
stacker = "0.1"
dns-lookup = "3"
hostname = "0.4"
network-interface = "2"
libloading = "0.9"
tree-sitter = "0.26.8"
tree-sitter-language = "0.1.7"
fontconfig = "0.10.0"
yeslogic-fontconfig-sys = "6.0.0"
x11-dl = "2.21"
serde = { version = "1", features = ["derive"] }
thiserror = "2.0"
once_cell = "1.19"
cfg-if = "1.0"
bitflags = "2.0"
bytemuck = { version = "1.18", features = ["derive"] }
memmap2 = "0.9"
image = "0.25"
allsorts = "0.16.1"
encoding_rs = "0.8"
# Compression
flate2 = "1"
# Parsing
quick-xml = "0.37"
tl = "0.7"
# Database
rusqlite = { version = "0.35", features = ["bundled"] }
# Arbitrary precision integers (bignum support).
# Uses malachite, a pure-Rust bignum library derived from GMP/FLINT
# algorithms. This avoids C library compilation issues on Windows CI.
malachite = "0.9"
# GPU / windowing
winit = "0.30"
wgpu = "29"
wgpu-hal = { version = "29", features = ["vulkan"] }
raw-window-handle = "0.6"
ash = "0.38"
pollster = "0.4"
resvg = "0.47"
cosmic-text = "0.18.2"
swash = "0.2.6"
fontdb = "0.23"
ttf-parser = "0.25"
arboard = "3.4"
# GStreamer (video)
gstreamer = "0.25"
gstreamer-video = "0.25"
gstreamer-app = "0.25"
gstreamer-allocators = "0.25"
# Terminal emulation
alacritty_terminal = "0.26"
parking_lot = "0.12"
portable-pty = "0.9"
smallvec = "1.13"
# Build dependencies
cbindgen = "0.27"
which = "7.0"
bindgen = "0.72"
pkg-config = "0.3"
# OS pipe
os_pipe = "1.1"
# I/O multiplexing (epoll/kqueue/wepoll)
polling = "3"
# TLS
rustls = { version = "0.23", default-features = false, features = ["std", "tls12", "ring"] }
webpki-roots = "1.0"
rustls-pki-types = "1"
# Windows
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Globalization", "Win32_Networking_WinSock", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_Pipes", "Win32_UI_Input_KeyboardAndMouse"] }
# Dev / test
proptest = "1.6"
tempfile = "3.27.0"
colored = "3"
[profile.release]
lto = true
codegen-units = 1
debug = false
strip = "debuginfo"
[patch.crates-io]
cosmic-text = { git = "https://github.com/eval-exec/cosmic-text", rev = "5dd3fec8572e771794e3f203ab6780d828e9ce09" }