Skip to content

Commit 0275c24

Browse files
committed
In the beginning there was darkness...
0 parents  commit 0275c24

File tree

3 files changed

+467
-0
lines changed

3 files changed

+467
-0
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug/
4+
target/
5+
6+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8+
Cargo.lock
9+
10+
# These are backup files generated by rustfmt
11+
**/*.rs.bk
12+
13+
# MSVC Windows builds of rustc generate these, which store debugging information
14+
*.pdb

Cargo.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[package]
2+
name = "rxpipes"
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+
clap = { version = "4.5.4", features = ["derive"] }
10+
crossterm = "0.27.0"
11+
eyre = "0.6.12"
12+
rand = "0.8.5"
13+
14+
[features]
15+
default = ["alternate-screen"]
16+
alternate-screen = []

0 commit comments

Comments
 (0)