Skip to content

Commit a64b66d

Browse files
committed
feat: vivectl
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
1 parent 453f800 commit a64b66d

7 files changed

Lines changed: 690 additions & 0 deletions

File tree

vivectl/.envrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/1.2.3/direnvrc" "sha256-/aHqL/6nLpHcZJcB5/7/5+mO338l28uFbq88DMfWJn4="
2+
3+
use flake

vivectl/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target

vivectl/Cargo.lock

Lines changed: 297 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vivectl/Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "vivectl"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
anyhow = "1.0.53"
10+
clap = { version = "3.0.13", features = ["derive"] }
11+
hex-literal = "0.3.4"
12+
hidapi = "1.3.2"
13+
thiserror = "1.0.30"

0 commit comments

Comments
 (0)