-
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.
* impl in progress * impl in progress * default project config file generation + deploy impl continued on both cli and lib side * impl in progress deploy done with small leftover * deployment command ready * small updates * make config values kebab case * small updates * small updates * small update * changed dependencies of tari repo * cargo update
- Loading branch information
Showing
28 changed files
with
6,619 additions
and
950 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
[package] | ||
name = "tari_cli" | ||
[workspace] | ||
members = ["crates/tari_deploy", "crates/cli"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["The Tari Development Community"] | ||
repository = "https://github.com/tari-project/tari-cli" | ||
license = "BSD-3-Clause" | ||
|
||
[[bin]] | ||
name = "tari" | ||
path = "src/main.rs" | ||
|
||
[dependencies] | ||
anyhow = "1.0.93" | ||
clap = { version = "4.5.20", features = ["derive", "string"] } | ||
dirs-next = "2.0.0" | ||
[workspace.dependencies] | ||
tokio = { version = "1.41.1", features = ["full"] } | ||
toml = "0.8.19" | ||
serde = { version = "1.0.215", features = ["derive"] } | ||
termimad = "0.31.0" | ||
cargo-generate = "^0.22.0" | ||
git2 = { version = "^0.19", features = ["default"] } | ||
thiserror = "2.0.3" | ||
spinners = "4.1.1" | ||
convert_case = "0.6.0" | ||
dialoguer = { version = "0.11.0", features = ["default", "fuzzy-select"] } | ||
cargo_toml = "0.20.5" | ||
url = { version = "2.5.3", features = ["default", "serde"] } | ||
|
||
tari_core = { git = "https://github.com/tari-project/tari.git", branch = "feature-dan2" } | ||
tari_common_types = { git = "https://github.com/tari-project/tari.git", branch = "feature-dan2" } | ||
minotari_app_grpc = { git = "https://github.com/tari-project/tari.git", branch = "feature-dan2" } | ||
|
||
tari_wallet_daemon_client = { git = "https://github.com/tari-project/tari-dan.git", branch = "development" } | ||
tari_dan_engine = { git = "https://github.com/tari-project/tari-dan.git", branch = "development" } | ||
tari_engine_types = { git = "https://github.com/tari-project/tari-dan.git", branch = "development" } | ||
tari_template_lib = { git = "https://github.com/tari-project/tari-dan.git", branch = "development" } |
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,30 @@ | ||
[package] | ||
name = "cli" | ||
version.workspace = true | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
[[bin]] | ||
name = "tari" | ||
path = "src/main.rs" | ||
|
||
[dependencies] | ||
tari_deploy = { path = "../tari_deploy" } | ||
tari_core = { workspace = true } | ||
anyhow = "1.0.93" | ||
clap = { version = "4.5.20", features = ["derive", "string"] } | ||
dirs-next = "2.0.0" | ||
tokio = { workspace = true } | ||
toml = "0.8.19" | ||
serde = { workspace = true } | ||
termimad = "0.31.0" | ||
cargo-generate = "^0.22.0" | ||
git2 = { version = "^0.19", features = ["default"] } | ||
thiserror = { workspace = true } | ||
spinners = "4.1.1" | ||
convert_case = "0.6.0" | ||
dialoguer = { version = "0.11.0", features = ["default", "fuzzy-select"] } | ||
cargo_toml = "0.20.5" | ||
url = { 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
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
Oops, something went wrong.