chore: add wip web package

This commit is contained in:
Alexander Navarro 2025-05-15 13:02:32 -04:00
parent 2827193fd6
commit ad3dd8cb30
4 changed files with 14 additions and 1 deletions

4
Cargo.lock generated
View file

@ -2240,6 +2240,10 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "web"
version = "0.1.0"
[[package]]
name = "whoami"
version = "1.6.0"

View file

@ -2,5 +2,5 @@
resolver = "3"
members = [
"cli", "lib_sync_core",
"cli", "lib_sync_core", "web",
]

6
web/Cargo.toml Normal file
View file

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

3
web/src/main.rs Normal file
View file

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