mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-03 21:53:08 +00:00
Initial project structure
This commit is contained in:
parent
a67b539624
commit
f4412e1c43
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
Cargo.lock
|
||||
target/
|
||||
.vscode
|
||||
13
sz-poc-offsite-2025/Cargo.toml
Normal file
13
sz-poc-offsite-2025/Cargo.toml
Normal 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" }
|
||||
6
sz-poc-offsite-2025/node/Cargo.toml
Normal file
6
sz-poc-offsite-2025/node/Cargo.toml
Normal file
@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "node"
|
||||
edition = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
2
sz-poc-offsite-2025/node/src/main.rs
Normal file
2
sz-poc-offsite-2025/node/src/main.rs
Normal file
@ -0,0 +1,2 @@
|
||||
#[tokio::main]
|
||||
async fn main() {}
|
||||
Loading…
x
Reference in New Issue
Block a user