-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (60 loc) · 1.65 KB
/
Cargo.toml
File metadata and controls
64 lines (60 loc) · 1.65 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
[package]
name = "vertigo-sync"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
build = "build.rs"
description = "Fast, deterministic source sync for Roblox Studio"
license = "MIT"
repository = "https://github.com/vertigo-sync/vertigo-sync"
homepage = "https://github.com/vertigo-sync/vertigo-sync"
documentation = "https://docs.rs/vertigo-sync"
readme = "README.md"
keywords = ["roblox", "studio", "sync", "luau", "cli"]
categories = ["command-line-utilities", "development-tools", "game-development"]
exclude = ["target/**"]
[[bin]]
name = "vsync"
path = "src/main.rs"
[dependencies]
anyhow = "1"
glob = "0.3"
toml = "0.8"
axum = { version = "0.8", features = ["ws"] }
tokio-tungstenite = "0.28"
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
itoa = "1"
memmap2 = "0.9"
rayon = "1"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
tokio = { version = "1", features = ["full"] }
notify = "8"
tokio-stream = { version = "0.1", features = ["sync"] }
rbx_binary = "2.0.1"
rbx_xml = "2.0.1"
rbx_dom_weak = "4.1.0"
rbx_types = "3.1.0"
rbx_reflection_database = "2.0.2"
tower-http = { version = "0.6", features = ["cors", "limit"] }
uuid = { version = "1", features = ["v4"] }
owo-colors = "4"
supports-color = "3"
stylua = { version = "2.4.0", default-features = false, features = ["luau"] }
reqwest = { version = "0.12", features = ["json"] }
zip = "2"
dirs = "6"
semver = "1"
similar = "2"
clap_complete = "4"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
serde_json = "1"
tempfile = "3"
[[bench]]
name = "sync_benchmark"
harness = false