Skip to content

Commit

Permalink
Merge pull request #795 from rainlanguage/2024-08-27-cli-deployer-words
Browse files Browse the repository at this point in the history
Cli command for getting deployer words
  • Loading branch information
hardyjosh authored Aug 27, 2024
2 parents a06f93c + c8751b7 commit 2aba2de
Show file tree
Hide file tree
Showing 5 changed files with 441 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ['env-filter'] }
comfy-table = { workspace = true }
chrono = { workspace = true }
csv = { workspace = true }

[target.'cfg(not(target_family = "wasm"))'.dependencies]
tokio = { workspace = true, features = ["full"] }
Expand All @@ -36,3 +37,4 @@ tokio = { workspace = true, features = ["sync", "macros", "io-util", "rt", "time
[dev-dependencies]
httpmock = "0.7.0"
serde_json = { workspace = true }
rain-metadata = { workspace = true }
3 changes: 2 additions & 1 deletion crates/cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ mod order;
mod order_take;
mod quote;
mod vault;
mod words;

pub use self::{chart::Chart, order::Order, order_take::OrderTake, vault::Vault};
pub use self::{chart::Chart, order::Order, order_take::OrderTake, vault::Vault, words::Words};
Loading

0 comments on commit 2aba2de

Please sign in to comment.