chore: add wip web package

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

View file

@ -4,6 +4,7 @@
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/cli/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/lib_sync_core/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/web/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />

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!");
}