Skip to content

Commit

Permalink
feature: add csv cli support
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrchen committed Mar 24, 2024
1 parent 073119d commit 71196b3
Show file tree
Hide file tree
Showing 8 changed files with 499 additions and 75 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target
output.json
298 changes: 297 additions & 1 deletion Cargo.lock

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

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
[package]
name = "template"
name = "rcli"
version = "0.1.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
edition = "2021"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
clap = { version = "4.5.3", features = ["derive"] }
csv = "1.3.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
Loading

0 comments on commit 71196b3

Please sign in to comment.