Skip to content

Commit

Permalink
Add versoview and versoview_messages (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
Legend-Master authored Oct 14, 2024
1 parent 24e4599 commit 9cf43b3
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 2 deletions.
18 changes: 18 additions & 0 deletions Cargo.lock

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

10 changes: 8 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
workspace = {}
[workspace]
members = ["versoview", "versoview_messages"]

[workspace.dependencies]
ipc-channel = "0.18.2"
serde = { version = "1.0", features = ["derive"] }

[package]
name = "verso"
Expand Down Expand Up @@ -55,7 +60,7 @@ getopts = "0.2.17"
gleam = "0.15"
glutin = "0.32.0"
glutin-winit = "0.5.0"
ipc-channel = "0.18"
ipc-channel = { workspace = true }
keyboard-types = "0.7"
log = "0.4"
raw-window-handle = { version = "0.6", features = ["std"] }
Expand Down Expand Up @@ -99,6 +104,7 @@ cargo-packager-resource-resolver = { version = "0.1.1", features = [
"auto-detect-format",
], optional = true }
url = "2.5.2"
versoview_messages = { path = "./versoview_messages" }

[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
objc2 = "0.5"
Expand Down
9 changes: 9 additions & 0 deletions versoview/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "versoview"
version = "0.0.1"
edition = "2021"

[dependencies]
ipc-channel = { workspace = true }
serde = { workspace = true }
versoview_messages = { path = "../versoview_messages" }
Empty file added versoview/src/lib.rs
Empty file.
8 changes: 8 additions & 0 deletions versoview_messages/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "versoview_messages"
version = "0.0.1"
edition = "2021"

[dependencies]
ipc-channel = { workspace = true }
serde = { workspace = true }
Empty file added versoview_messages/src/lib.rs
Empty file.

0 comments on commit 9cf43b3

Please sign in to comment.