forked from rojo-rbx/remodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 949 Bytes
/
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
[package]
name = "remodel"
version = "0.11.0"
description = "A tool to read, modify, and write Roblox objects."
authors = ["Lucien Greathouse <[email protected]>"]
edition = "2018"
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]
rbx_binary = "0.6.4"
rbx_dom_weak = "2.3.0"
rbx_reflection = "4.2.0"
rbx_reflection_database = "0.2.4"
rbx_xml = "0.12.3"
anyhow = "1.0.44"
backtrace = "0.3.61"
base64 = "0.13.0"
log = "0.4.14"
rbx_cookie = "0.1.2"
reqwest = "0.9.24"
serde = "1.0.130"
serde_json = "1.0.68"
structopt = "0.3.23"
[dependencies.mlua]
version = "0.7.4"
features = ["lua53", "vendored"]
[dependencies.env_logger]
version = "0.7.1"
default-features = false
features = ["termcolor", "atty"]