Skip to content

Commit

Permalink
rename gosub_rendering to gosub_render_utils, so it is less confusing
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharktheone committed May 6, 2024
1 parent 93fd321 commit a303a2d
Show file tree
Hide file tree
Showing 15 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ gosub_css3 = { path = "./crates/gosub_css3", features = [] }
gosub_styling = { path = "./crates/gosub_styling", features = [] }
gosub_jsapi = { path = "./crates/gosub_jsapi", features = [] }
gosub_testing = { path = "./crates/gosub_testing", features = [] }
gosub_rendering = { path = "./crates/gosub_rendering", features = [] }
gosub_rendering = { path = "crates/gosub_render_utils", features = [] }
gosub_renderer = { path = "./crates/gosub_renderer", features = [] }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/gosub_bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"

[dependencies]
gosub_shared = { path = "../gosub_shared" }
gosub_rendering = { path = "../gosub_rendering" }
gosub_rendering = { path = "../gosub_render_utils" }
gosub_html5 = { path = "../gosub_html5" }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/gosub_bindings/src/wrapper/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use gosub_rendering::render_tree::text::TextNode;
use std::ffi::c_char;
use std::ffi::CString;

/// This is a C-friendly wrapper around gosub_rendering::rendertree::text::TextNode
/// This is a C-friendly wrapper around gosub_render_utils::rendertree::text::TextNode
/// that converts Rust Strings to owned pointers to pass to the C API.
#[repr(C)]
pub struct CTextNode {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/gosub_renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
gosub_rendering = { path = "../gosub_rendering" }
gosub_rendering = { path = "../gosub_render_utils" }
gosub_html5 = { path = "../gosub_html5" }
gosub_shared = { path = "../gosub_shared" }
gosub_styling = { path = "../gosub_styling" }
Expand Down

0 comments on commit a303a2d

Please sign in to comment.