Add a project for demonstrating concurrency using async

This commit is contained in:
Manuel Thalmann 2025-04-05 12:27:06 +02:00
commit e52278f0d3
Signed by: manuth
SSH key fingerprint: SHA256:HsMLC+7kJWALP6YCYCoopxNbUnghwSGLVcG76SECT5c
4 changed files with 19 additions and 0 deletions
async-concurrency

7
async-concurrency/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 = 4
[[package]]
name = "async-concurrency"
version = "0.1.0"

View file

@ -0,0 +1,6 @@
[package]
name = "async-concurrency"
version = "0.1.0"
edition = "2024"
[dependencies]

View file

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