chore: initialize workspace and main project with standard structure
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
01.workspace/target
|
||||||
7
01.workspace/Cargo.lock
generated
Normal file
7
01.workspace/Cargo.lock
generated
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 4
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "heave"
|
||||||
|
version = "0.1.0"
|
||||||
4
01.workspace/Cargo.toml
Normal file
4
01.workspace/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[workspace]
|
||||||
|
members = ["heave" ]
|
||||||
|
resolver = "3" # optional, to specify dependency resolver version
|
||||||
|
|
||||||
6
01.workspace/heave/Cargo.toml
Normal file
6
01.workspace/heave/Cargo.toml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
[package]
|
||||||
|
name = "heave"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
0
01.workspace/heave/src/fun/mod.rs
Normal file
0
01.workspace/heave/src/fun/mod.rs
Normal file
0
01.workspace/heave/src/imp/mod.rs
Normal file
0
01.workspace/heave/src/imp/mod.rs
Normal file
8
01.workspace/heave/src/lib.rs
Normal file
8
01.workspace/heave/src/lib.rs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
use std::*;
|
||||||
|
|
||||||
|
mod fun;
|
||||||
|
mod imp;
|
||||||
|
mod mcr;
|
||||||
|
mod str;
|
||||||
|
mod trt;
|
||||||
|
mod tst;
|
||||||
0
01.workspace/heave/src/mcr/mod.rs
Normal file
0
01.workspace/heave/src/mcr/mod.rs
Normal file
0
01.workspace/heave/src/str/mod.rs
Normal file
0
01.workspace/heave/src/str/mod.rs
Normal file
0
01.workspace/heave/src/trt/mod.rs
Normal file
0
01.workspace/heave/src/trt/mod.rs
Normal file
0
01.workspace/heave/src/tst/mod.rs
Normal file
0
01.workspace/heave/src/tst/mod.rs
Normal file
Reference in New Issue
Block a user