first commit

This commit is contained in:
aOK 2023-10-06 17:05:05 +03:00
commit 7c3e8dac6d
7 changed files with 37 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
/target
/book/target
/book/generated/**
!/generated/.gitkeep
/book/dist
/book/Cargo.lock

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "dev_work"
version = "0.1.0"

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[workspace]
resolver = "2"
members = [
"dev",
"book",
"book/src-tauri",
]
[dependencies]

1
book Submodule

@ -0,0 +1 @@
Subproject commit 1b1cd2e06479691045a2ed8fbbd27d063ddf3435

8
dev/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "dev"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
dev/src/main.rs Normal file
View File

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

3
src/main.rs Normal file
View File

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