Initial project structure #60

This commit is contained in:
Antonio 2025-04-08 08:18:44 +02:00 committed by GitHub
commit 9cfc93b574
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
Cargo.lock
target/
.vscode

View File

@ -0,0 +1,13 @@
[workspace]
members = ["node"]
resolver = "3"
[workspace.package]
edition = "2024"
[workspace.dependencies]
# Internal
node = { path = "node" }
# External
tokio = { version = "1.0" }

View File

@ -0,0 +1,6 @@
[package]
name = "node"
edition = { workspace = true }
[dependencies]
tokio = { workspace = true, features = ["full"] }

View File

@ -0,0 +1,2 @@
#[tokio::main]
async fn main() {}