-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c85a4b
commit 8cbb89a
Showing
16 changed files
with
58 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
Cargo.lock | ||
*/target | ||
/target | ||
.vscode/ | ||
**/*.rs.bk | ||
*.glade~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,6 @@ | ||
[package] | ||
name = "opensi" | ||
version = "0.1.0" | ||
authors = ["barsoosayque <[email protected]>", "snpefk <[email protected]>"] | ||
edition = "2018" | ||
|
||
[lib] | ||
name = "core" | ||
path = "src/core/lib.rs" | ||
|
||
[[bin]] | ||
name = "editor" | ||
path = "src/editor/main.rs" | ||
|
||
[[bin]] | ||
name = "client" | ||
path = "src/client/main.rs" | ||
|
||
|
||
[dependencies] | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
quick-xml = { version = "0.17", features = [ "serialize" ] } | ||
zip = "0.5.4" | ||
|
||
gtk = "^0.8.0" | ||
relm = "^0.19.0" | ||
relm-derive = "^0.19.0" | ||
gdk = "^0.12.0" | ||
gdk-pixbuf = "^0.8.0" | ||
|
||
percent-encoding = "2.1.0" | ||
[workspace] | ||
members = [ | ||
"opensi", | ||
"opensi-client", | ||
"opensi-editor" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[package] | ||
name = "opensi-client" | ||
version = "0.1.0" | ||
authors = ["barsoosayque <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
opensi = { version = "*", path = "../opensi" } | ||
|
||
druid = "0.6.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
use druid::{AppLauncher, WindowDesc, Widget, PlatformError}; | ||
use druid::widget::Label; | ||
|
||
fn build_ui() -> impl Widget<()> { | ||
Label::new("Hello world") | ||
} | ||
|
||
fn main() -> Result<(), PlatformError> { | ||
AppLauncher::with_window(WindowDesc::new(build_ui)).launch(())?; | ||
Ok(()) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[package] | ||
name = "opensi-editor" | ||
version = "0.1.0" | ||
authors = ["snpefk <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
opensi = { version = "*", path = "../opensi" } | ||
|
||
gtk = "^0.8.0" | ||
relm = "^0.19.0" | ||
relm-derive = "^0.19.0" | ||
gdk = "^0.12.0" | ||
gdk-pixbuf = "^0.8.0" | ||
zip = "0.5.4" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "opensi" | ||
version = "0.1.0" | ||
authors = ["barsoosayque <[email protected]>", "snpefk <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
quick-xml = { version = "0.17", features = [ "serialize" ] } | ||
zip = "0.5.4" | ||
percent-encoding = "2.1.0" |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.