-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (69 loc) · 1.88 KB
/
Cargo.toml
File metadata and controls
82 lines (69 loc) · 1.88 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
[workspace]
members = [
"crates/document",
"crates/script",
"crates/effects",
"crates/theme",
"crates/evaluator",
"crates/renderer",
"crates/encoder",
"crates/plugin",
"crates/core",
"crates/cli",
"crates/importer",
"crates/lsp",
"crates/input",
]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/codereplay/codereplay"
[workspace.dependencies]
# Serialization
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.149"
toml = "1.0.2"
# Text
ropey = "1.6"
memchr = "2.8.0"
# Hashing (faster than SipHash for non-DoS-sensitive keys; wasm-safe)
rustc-hash = "2.1.1"
# Parsing
tree-sitter = "0.26.5"
tree-sitter-rust = "0.24.0"
tree-sitter-json = "0.24.8"
# GPU / Rendering
wgpu = "28.0.0"
glyphon = "0.10.0"
cosmic-text = "0.17.1"
pollster = "0.4.0"
bytemuck = { version = "1.25.0", features = ["derive"] }
# Windowing
winit = "0.30"
# Plugin loading
libloading = "0.9.0"
# Schema generation
schemars = "1.2.1"
# Error handling
thiserror = "2.0.18"
# CLI
clap = { version = "4.5.37", features = ["derive"] }
# Async/LSP
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros", "io-std"] }
tower-lsp-server = "0.23.0"
# Internal crates
codereplay-document = { path = "crates/document" }
codereplay-script = { path = "crates/script" }
codereplay-effects = { path = "crates/effects" }
codereplay-theme = { path = "crates/theme" }
codereplay-evaluator = { path = "crates/evaluator" }
codereplay-renderer = { path = "crates/renderer" }
codereplay-encoder = { path = "crates/encoder" }
codereplay-plugin = { path = "crates/plugin" }
codereplay-core = { path = "crates/core" }
codereplay-cli = { path = "crates/cli" }
codereplay-importer = { path = "crates/importer" }
codereplay-input = { path = "crates/input" }
codereplay-lsp = { path = "crates/lsp" }