-
Notifications
You must be signed in to change notification settings - Fork 49
/
Cargo.toml
38 lines (33 loc) · 1.05 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
[package]
name = "rbx_binary"
description = "Implementation of Roblox's binary model (rbxm) and place (rbxl) file formats"
version = "0.7.7"
license = "MIT"
documentation = "https://docs.rs/rbx_binary"
homepage = "https://github.com/rojo-rbx/rbx-dom"
repository = "https://github.com/rojo-rbx/rbx-dom.git"
readme = "README.md"
authors = ["Lucien Greathouse <[email protected]>"]
edition = "2018"
[features]
unstable_text_format = ["serde"]
[dependencies]
rbx_dom_weak = { version = "2.9.0", path = "../rbx_dom_weak" }
rbx_reflection = { version = "4.7.0", path = "../rbx_reflection" }
rbx_reflection_database = { version = "0.2.12", path = "../rbx_reflection_database" }
ahash = "0.8.11"
log = "0.4.17"
lz4 = "1.23.3"
thiserror = "1.0.31"
serde = { version = "1.0.137", features = ["derive"], optional = true }
profiling = "1.0.6"
zstd = "0.13.2"
[dev-dependencies]
criterion = "0.5.1"
env_logger = "0.9.0"
heck = "0.4.0"
insta = { version = "1.14.1", features = ["yaml"] }
serde = { version = "1.0.137", features = ["derive"] }
[[bench]]
name = "suite"
harness = false