set up cargo

trunk
Goren Barak 2023-11-30 13:49:47 -05:00
parent 09d783169b
commit 71128268e4
3 changed files with 15 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
/Cargo.lock

13
Cargo.toml Normal file
View File

@ -0,0 +1,13 @@
[package]
name = "temp"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[lib]
name = "temp"
path = "temp.rs"
proc-macro = true

View File