forked from UpliftGames/remodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (52 loc) · 1.92 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
[package]
name = "remodel"
version = "0.12.0-uplift.release.12"
description = "A tool to read, modify, and write Roblox objects."
authors = ["Lucien Greathouse <[email protected]>"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/rojo-rbx/remodel"
documentation = "https://github.com/rojo-rbx/remodel"
repository = "https://github.com/rojo-rbx/remodel"
readme = "README.md"
[features]
default = []
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[dependencies]
# These dependencies can be uncommented when working on rbx-dom simultaneously
# rbx_binary = { path = "../rbx-dom/rbx_binary" }
# rbx_dom_weak = { path = "../rbx-dom/rbx_dom_weak" }
# rbx_reflection = { path = "../rbx-dom/rbx_reflection" }
# rbx_reflection_database = { path = "../rbx-dom/rbx_reflection_database" }
# rbx_xml = { path = "../rbx-dom/rbx_xml" }
rbx_binary = { git = "https://github.com/UpliftGames/rbx-dom", rev = "af4ba36e50c27b420216c7e473e0abcc8a93f604" }
rbx_dom_weak = { git = "https://github.com/UpliftGames/rbx-dom", rev = "af4ba36e50c27b420216c7e473e0abcc8a93f604" }
rbx_reflection = { git = "https://github.com/UpliftGames/rbx-dom", rev = "af4ba36e50c27b420216c7e473e0abcc8a93f604" }
rbx_reflection_database = { git = "https://github.com/UpliftGames/rbx-dom", rev = "af4ba36e50c27b420216c7e473e0abcc8a93f604" }
rbx_xml = { git = "https://github.com/UpliftGames/rbx-dom", rev = "af4ba36e50c27b420216c7e473e0abcc8a93f604" }
anyhow = "1.0.44"
backtrace = "0.3.61"
base64 = "0.13.0"
log = "0.4.14"
rbx_cookie = "0.1.2"
serde = "1.0.130"
serde_with = "2.0.1"
serde_json = "1.0.68"
structopt = "0.3.23"
futures = "0.3.24"
[dependencies.tokio]
version = "1.21.2"
features = ["full"]
[dependencies.reqwest]
version = "0.11.12"
features = ["json"]
[dependencies.mlua]
version = "0.8.4"
features = ["luau", "vendored", "async", "serialize"]
[dependencies.env_logger]
version = "0.9.1"
default-features = false
features = ["termcolor", "atty"]