-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
107 lines (93 loc) · 2.43 KB
/
Cargo.toml
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
[package]
name = "argon-rbx"
authors = ["Dervex"]
description = "Full featured tool for Roblox development"
repository = "https://github.com/argon-rbx/argon"
documentation = "https://argon.wiki/docs"
homepage = "https://argon.wiki"
license = "Apache-2.0"
version = "2.0.21"
edition = "2021"
build = "build.rs"
[[bin]]
name = "argon"
path = "src/main.rs"
[lib]
name = "argon"
path = "src/lib.rs"
[features]
plugin = []
[dependencies]
rbx_xml = "0.13.5"
rbx_binary = "0.7.7"
rbx_dom_weak = "2.9.0"
rbx_reflection = "4.7.0"
rbx_reflection_database = "0.2.10"
config-derive = { version = "*", path = "crates/config-derive" }
json-formatter = { version = "*", path = "crates/json-formatter" }
profiling = { version = "*", path = "crates/profiling/profiling" }
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }
serde = { version = "1.0.215", features = ["derive"] }
rmpv = { version = "1.3.0", features = ["with-serde"] }
clap = { version = "4.5.21", features = ["derive", "cargo"] }
reqwest = { version = "0.12.9", default-features = false, features = [
"blocking",
"rustls-tls",
"json",
] }
self_update = { version = "0.39.0", default-features = false, features = [
"compression-zip-deflate",
"rustls",
] }
notify-debouncer-full = "0.3.1"
clap-verbosity-flag = "2.2.3"
crossbeam-channel = "0.5.13"
derive-from-one = "0.1.0"
roblox_install = "1.0.0"
panic-message = "0.3.0"
actix-msgpack = "0.1.4"
puffin_http = "0.16.0"
serde_json = "1.0.133"
env_logger = "0.11.5"
include_dir = "0.7.4"
directories = "5.0.1"
lazy_static = "1.5.0"
backtrace = "0.3.74"
documented = "0.6.0"
dialoguer = "0.11.0"
path-clean = "1.0.1"
rmp-serde = "1.3.0"
actix-web = "4.9.0"
multimap = "0.10.0"
optfield = "0.3.0"
json2lua = "0.1.2"
toml2lua = "0.1.0"
yaml2lua = "0.1.0"
globenv = "0.2.1"
puffin = "0.19.0"
colored = "2.0.4"
anyhow = "1.0.93"
chrono = "0.4.38"
notify = "6.1.1"
whoami = "1.5.2"
trash = "5.2.0"
ctrlc = "3.4.5"
toml = "0.8.15"
glob = "0.3.1"
open = "5.3.1"
log = "0.4.22"
csv = "1.3.1"
[target.'cfg(not(target_os = "linux"))'.dependencies]
keybd_event = "0.1.2"
[target.'cfg(target_os = "windows")'.dependencies]
winsafe = { version = "0.0.22", features = ["user"] }
[build-dependencies]
anyhow = "1.0.93"
self_update = { version = "0.39.0", default-features = false, features = [
"rustls",
] }
[dev-dependencies]
approx = "0.5.1"
[patch.crates-io]
notify-debouncer-full = { path = "crates/notify-debouncer-full" }
self_update = { path = "crates/self_update" }