chore: add wip web package
This commit is contained in:
parent
2827193fd6
commit
f34142dcba
5 changed files with 15 additions and 1 deletions
1
.idea/readwise-bulk-upload.iml
generated
1
.idea/readwise-bulk-upload.iml
generated
|
|
@ -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
4
Cargo.lock
generated
|
|
@ -2240,6 +2240,10 @@ dependencies = [
|
|||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "web"
|
||||
version = "0.1.0"
|
||||
|
||||
[[package]]
|
||||
name = "whoami"
|
||||
version = "1.6.0"
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
resolver = "3"
|
||||
|
||||
members = [
|
||||
"cli", "lib_sync_core",
|
||||
"cli", "lib_sync_core", "web",
|
||||
]
|
||||
|
|
|
|||
6
web/Cargo.toml
Normal file
6
web/Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "web"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
3
web/src/main.rs
Normal file
3
web/src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue