chore: setup project with cargo, deps, libs, license, and directories

This commit is contained in:
2026-06-04 18:11:55 +01:00
commit 2e93f40c4b
12 changed files with 2409 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
[package]
name = "enat-web"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
[dependencies]
axum = "0.8.9"
enat-core = { version = "0.1.0", path = "../enat-core" }
serde_json = "1.0.150"
tokio = { version = "1.52.3", features = ["full"] }
tower-http = { version = "0.6.11", features = ["fs"] }
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}