mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 05:06:29 +00:00
* Changes project-related structures to use `BTreeMap` instead of `HashMap` for children to aid determiniusm * Changes imfs-related structures to have total ordering and use `BTreeSet` instead of `HashSet` * Upgrades dependencies to `bx_dom_weak`1.2.0 and rbx_xml 0.5.0 to aid in more determinism stuff * Re-exposes the `RbxSession`'s root project via `root_project()` * Implements `Default` for a couple things * Tweaks visualization code to support visualizing trees not attached to an `RbxSession` * Adds an ID-invariant comparison method for `rbx_tree` relying on previous determinism changes * Adds a (disabled) test to start finding issues in the reconciler with regards to communicativity of snapshot application * Adds a snapshot testing system that operates on `RbxTree` and associated metadata, which are committed in this change
50 lines
898 B
TOML
50 lines
898 B
TOML
[package]
|
|
name = "rojo"
|
|
version = "0.5.0-alpha.5"
|
|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
|
description = "A tool to create robust Roblox projects"
|
|
license = "MIT"
|
|
repository = "https://github.com/LPGhatguy/rojo"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
server-plugins = []
|
|
|
|
[lib]
|
|
name = "librojo"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "rojo"
|
|
path = "src/bin.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.27"
|
|
csv = "1.0"
|
|
env_logger = "0.6"
|
|
failure = "0.1.3"
|
|
futures = "0.1"
|
|
hyper = "0.12"
|
|
log = "0.4"
|
|
maplit = "1.0.1"
|
|
notify = "4.0"
|
|
rbx_binary = "0.4.0"
|
|
rbx_dom_weak = "1.2.0"
|
|
rbx_xml = "0.5.0"
|
|
rbx_reflection = "2.0.374"
|
|
regex = "1.0"
|
|
reqwest = "0.9.5"
|
|
rlua = "0.16"
|
|
ritz = "0.1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
uuid = { version = "0.7", features = ["v4", "serde"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.0"
|
|
walkdir = "2.1"
|
|
lazy_static = "1.2"
|
|
pretty_assertions = "0.6.1"
|
|
paste = "0.1" |