Add initial rust configs

This commit is contained in:
Radical 2025-04-28 20:41:33 +02:00
parent 566002cda1
commit e98f9517fb
2 changed files with 13 additions and 0 deletions

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[dependencies]
actix = "0.13"
tokio = { version = "1.44", features = ["full"] }

5
src/main.rs Normal file
View file

@ -0,0 +1,5 @@
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("Hello, world!");
Ok(())
}