Skip to content

Commit 6a14f9e

Browse files
committed
[more] implementation
1 parent 1cf04d8 commit 6a14f9e

File tree

14 files changed

+4525
-2
lines changed

14 files changed

+4525
-2
lines changed

.github/workflows/TestingCI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Rust
22

33
on:
44
push:
5+
branches:
6+
- more
57
pull_request:
68

79
env:
@@ -44,4 +46,4 @@ jobs:
4446
- name: Build
4547
run: cargo build --release --verbose
4648
- name: Run tests
47-
run: cargo test --release --verbose
49+
run: cargo test --release --verbose

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11

22
target/
3-

display/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ rust-version.workspace = true
99

1010
[dependencies]
1111
clap.workspace = true
12+
clap.features = ["env"]
1213
gettext-rs.workspace = true
14+
libc = { version = "0.2", default-features = false }
15+
termion = "4.0"
16+
thiserror = "1.0"
1317

1418
[dev-dependencies]
1519
plib = { path = "../plib" }
@@ -24,3 +28,7 @@ path = "./echo.rs"
2428
[[bin]]
2529
name = "printf"
2630
path = "./printf.rs"
31+
32+
[[bin]]
33+
name = "more"
34+
path = "./more.rs"

0 commit comments

Comments
 (0)