Skip to content

Commit

Permalink
Use directly linked dependencies, spice up life
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekkonot committed May 6, 2024
1 parent 31821d4 commit 01d5acf
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 25 deletions.
35 changes: 15 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 13 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,19 @@ memofs = { version = "0.2.0", path = "crates/memofs" }
# rbx_reflection_database = { path = "../rbx-dom/rbx_reflection_database" }
# rbx_xml = { path = "../rbx-dom/rbx_xml" }

rbx_binary = "0.7.4"
rbx_dom_weak = "2.7.0"
rbx_reflection = "4.5.0"
rbx_reflection_database = "0.2.10"
rbx_xml = "0.13.3"
# These dependencies are being pulled directly from our GitHub fork so they can
# be commented away for now.
# rbx_binary = "0.7.4"
# rbx_dom_weak = "2.7.0"
# rbx_reflection = "4.5.0"
# rbx_reflection_database = "0.2.10"
# rbx_xml = "0.13.3"

rbx_binary = { git = "https://github.com/UpliftGames/rbx-dom.git", branch = "master" }
rbx_dom_weak = { git = "https://github.com/UpliftGames/rbx-dom.git", branch = "master" }
rbx_reflection = { git = "https://github.com/UpliftGames/rbx-dom.git", branch = "master" }
rbx_reflection_database = { git = "https://github.com/UpliftGames/rbx-dom.git", branch = "master" }
rbx_xml = { git = "https://github.com/UpliftGames/rbx-dom.git", branch = "master" }

anyhow = "1.0.44"
backtrace = "0.3.61"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Instead, this branch has changes made freely so that [releases](https://github.c

- The patch for Model pivots, which is present upstream but not in the version syncback is based on. It is in its own branch to avoid merge conflicts down the line.
- Changing the version of the CLI and plugin.
- All [`rbx-dom`](https://github.com/rojo-rbx/rbx-dom/) dependencies point directly at [our fork](https://github.com/UpliftGames/rbx-dom/tree/master)'s `master` branch
- This README change.

However, this may change since **no stability is guaranteed on this branch**. If you're looking for syncback's implementation, check `syncback-tests` and `syncback-incremental`.
Expand Down

0 comments on commit 01d5acf

Please sign in to comment.