Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 69 additions & 4 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions binaries/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ serde = { version = "1.0.136", features = ["derive"] }
serde_yaml = { workspace = true }
webbrowser = "0.8.3"
serde_json = "1.0.86"
toml = "0.8.19"
termcolor = "1.1.3"
uuid = { version = "1.7", features = ["v7", "serde"] }
inquire = "0.5.2"
Expand Down Expand Up @@ -77,10 +78,17 @@ git2 = { workspace = true }
zenoh = { workspace = true }
arrow-json.workspace = true
chrono = "0.4.42"
flate2 = "1.1.2"
tar = "0.4.44"
sha2 = "0.10.9"
hex = "0.4.3"

[build-dependencies]
pyo3-build-config = "0.23"

[dev-dependencies]
tempfile = "3.23.0"

[lib]
name = "dora_cli"
path = "src/lib.rs"
Expand Down
2 changes: 2 additions & 0 deletions binaries/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ mod command;
mod common;
mod formatting;
pub mod output;
pub mod package_archive;
pub mod publish_metadata;
pub mod session;
mod template;

Expand Down
Loading
Loading