Add Rust project for self-testing

This commit is contained in:
Dave Rolsky 2023-03-12 10:37:46 -04:00
parent 9a602122c2
commit 4dfe96e52b
No known key found for this signature in database
4 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/package.json /package.json
.\#* .\#*
\#*\# \#*\#
test-project/target/**

7
test-project/Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "test-project"
version = "0.1.0"

6
test-project/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "test-project"
version = "0.1.0"
edition = "2021"
[dependencies]

3
test-project/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}