-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
11 changed files
with
671 additions
and
594 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "ares-device" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -9,12 +9,12 @@ description = "Tools for getting device information" | |
[dependencies] | ||
common-device = { path = "../common/device" } | ||
common-connection = { path = "../common/connection" } | ||
clap = { workspace = true, features = ["derive", "env"] } | ||
clap = { workspace = true } | ||
cfg-if = "1.0.0" | ||
|
||
[target.'cfg(target_os="windows")'.dependencies] | ||
native-windows-gui = { version = "1.0.12" } | ||
native-windows-derive = "1.0.3" | ||
native-windows-gui = { version = "1.0.13" } | ||
native-windows-derive = "1.0.5" | ||
libssh-rs-sys = { workspace = true, features = ["vendored-openssl", "libz-sys"] } | ||
|
||
[target.'cfg(not(target_os="windows"))'.dependencies] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ares-install" | ||
version = "0.1.4" | ||
version = "0.1.5" | ||
edition = "2021" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -11,7 +11,7 @@ description = "Install or Remove app from a device" | |
[dependencies] | ||
common-device = { path = "../common/device" } | ||
common-connection = { path = "../common/connection" } | ||
clap = { workspace = true, features = ["derive", "env"] } | ||
clap = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
libssh-rs = { workspace = true } | ||
|
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,4 +1,3 @@ | ||
use std::fmt::Write; | ||
use std::fs::File; | ||
use std::io::{Error as IoError, ErrorKind}; | ||
use std::path::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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ares-launch" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -10,7 +10,7 @@ license = "Apache-2.0" | |
[dependencies] | ||
common-device = { path = "../common/device" } | ||
common-connection = { path = "../common/connection" } | ||
clap = { workspace = true, features = ["derive", "env"] } | ||
clap = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
libssh-rs = { workspace = true } | ||
|
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,19 +1,19 @@ | ||
[package] | ||
name = "ares-package" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
edition = "2021" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
clap = { version = "4.2.4", features = ["derive", "env"] } | ||
clap = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
ar = "0.9.0" | ||
tar = "0.4.41" | ||
flate2 = "1.0.33" | ||
tar = "0.4.43" | ||
flate2 = "1.0.34" | ||
path-slash = "0.2.1" | ||
elf = "0.7.4" | ||
regex = { workspace = true } | ||
|
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,6 @@ | ||
[package] | ||
name = "ares-push" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
edition = "2021" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.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
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,6 @@ | ||
[package] | ||
name = "ares-shell" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -10,5 +10,5 @@ common-device = { path = "../common/device" } | |
common-connection = { path = "../common/connection" } | ||
clap = { workspace = true, features = ["derive", "env"] } | ||
libssh-rs = { workspace = true } | ||
crossbeam-channel = "0.5.8" | ||
crossbeam-channel = "0.5.13" | ||
crossterm = "0.28.1" |