Skip to content

Commit c214111

Browse files
authored
chore: Init project with Cargo (#2)
1 parent 449a585 commit c214111

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
rustflags = ["-C", "target-feature=-crt-static"]

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "tee-worker-post-compute"
3+
version = "0.1.0"
4+
edition = "2024"
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)