-
Notifications
You must be signed in to change notification settings - Fork 1
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
083c6df
commit c99efa3
Showing
25 changed files
with
141 additions
and
80 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,3 +1,43 @@ | ||
[package] | ||
name = "devmode" | ||
description = "A project management utility for developers" | ||
version.workspace = true | ||
edition.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
categories.workspace = true | ||
keywords.workspace = true | ||
|
||
[dependencies] | ||
libset = "0.1.2" | ||
clap = { version = "3.2.14", features = ["derive"] } | ||
anyhow = "1.0.44" | ||
requestty = "0.4.1" | ||
colored = "2.0.0" | ||
regex = "1.5.4" | ||
git2 = "0.14.4" | ||
git2_credentials = "0.8.0" | ||
cmd_lib = "1.1.0" | ||
walkdir = "2.3.2" | ||
serde = { version = "1.0.126", features = ["derive"] } | ||
fs_extra = "1.2.0" | ||
derive_setters = "0.1.6" | ||
git-url-parse = "0.4.4" | ||
|
||
[workspace.package] | ||
version = "0.1.0" | ||
authors = ["Eduardo Flores <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/edfloreshz/devmode/" | ||
homepage = "https://devmode.edfloreshz.dev/" | ||
categories = ["development-tools"] | ||
keywords = ["development", "utility"] | ||
exclude = [".idea", ".github", ".vscode"] | ||
|
||
[workspace] | ||
resolver = "2" | ||
members = ["cli", "shared", "gui/slint", "gui/iced", "gui/egui"] | ||
members = ["cli", "gui/slint", "gui/iced", "gui/egui", "gui/freya"] | ||
# exclude = ["gui/freya"] |
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
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 |
---|---|---|
@@ -1,11 +1,17 @@ | ||
[package] | ||
name = "egui" | ||
version = "0.1.0" | ||
edition = "2021" | ||
name = "devmode-egui" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
categories.workspace = true | ||
keywords.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
eframe = "0.25.0" | ||
catppuccin-egui = "4.0" | ||
devmode-shared = { path = "../../shared" } | ||
devmode = { path = "../../" } |
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,18 @@ | ||
[package] | ||
name = "devmode-freya" | ||
version = "0.1.0" | ||
authors = ["Eduardo Flores <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/edfloreshz/devmode/" | ||
homepage = "https://devmode.edfloreshz.dev/" | ||
categories = ["development-tools"] | ||
keywords = ["development", "utility"] | ||
exclude = [".idea", ".github", ".vscode"] | ||
|
||
[dependencies] | ||
freya = "0.1" | ||
dioxus = { version = "0.4", features = [ | ||
"macro", | ||
"hooks", | ||
], default-features = false } |
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,26 @@ | ||
#![cfg_attr( | ||
all(not(debug_assertions), target_os = "windows"), | ||
windows_subsystem = "windows" | ||
)] | ||
|
||
use freya::prelude::*; | ||
|
||
fn main() { | ||
launch(app); | ||
} | ||
|
||
fn app(cx: Scope) -> Element { | ||
let mut count = use_state(cx, || 0); | ||
|
||
render!( | ||
rect { | ||
height: "100%", | ||
width: "100%", | ||
background: "rgb(35, 35, 35)", | ||
color: "white", | ||
padding: "12", | ||
onclick: move |_| count += 1, | ||
label { "Click to increase -> {count}" } | ||
} | ||
) | ||
} |
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,11 +1,17 @@ | ||
[package] | ||
name = "iced" | ||
version = "0.1.0" | ||
edition = "2021" | ||
name = "devmode-iced" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
categories.workspace = true | ||
keywords.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
iced = "0.10.0" | ||
strum = { version = "0.26.1", features = ["derive"] } | ||
devmode-shared = { path = "../../shared" } | ||
devmode = { path = "../../" } |
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 |
---|---|---|
@@ -1,16 +1,21 @@ | ||
[package] | ||
name = "devmode-gui" | ||
version = "0.1.0" | ||
authors = ["Eduardo Flores <[email protected]>"] | ||
edition = "2021" | ||
name = "devmode-slint" | ||
build = "build.rs" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
categories.workspace = true | ||
keywords.workspace = true | ||
|
||
[[bin]] | ||
name = "dmg" | ||
path = "src/main.rs" | ||
|
||
[dependencies] | ||
devmode-shared = { path = "../../shared" } | ||
devmode = { path = "../../" } | ||
git2 = "0.14.4" | ||
slint = "1.4" | ||
|
||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.