Skip to content
This repository was archived by the owner on Mar 22, 2024. It is now read-only.

Commit a7724e5

Browse files
committed
Add cargo project to the template
1 parent 94d79b1 commit a7724e5

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Diff for: Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "rust-codespaces"
3+
version = "0.1.0"
4+
authors = ["Ryan Levick <[email protected]>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]

Diff for: src/main.rs

+3
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)