Initial commit

This commit is contained in:
Eric Zhang
2022-04-03 19:58:51 -04:00
commit 3f4cdef248
6 changed files with 109 additions and 0 deletions

14
Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "bore-cli"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "bore"
path = "src/main.rs"
[dependencies]
clap = { version = "3.1.8", features = ["derive"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tokio = { version = "1.17.0", features = ["full"] }