Skip to content

Commit 2bfb3d0

Browse files
committed
init: initial commit with empty cargo bin project
Signed-off-by: Paul Osborne <[email protected]>
0 parents  commit 2bfb3d0

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.gitignore

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

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "gpio-utils"
3+
version = "0.1.0"
4+
authors = ["Paul Osborne <[email protected]>"]
5+
6+
[dependencies]

src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)