Browse Source

Starting with the code

main
Julio Biason 1 year ago
parent
commit
7a8c424668
  1. 6
      Cargo.toml
  2. 8
      common/Cargo.toml
  3. 1
      common/src/domain/mod.rs
  4. 1
      common/src/lib.rs
  5. 8
      store/Cargo.toml
  6. 1
      store/src/domain/mod.rs
  7. 1
      store/src/lib.rs

6
Cargo.toml

@ -0,0 +1,6 @@
[workspace]
members = [
"common",
"core",
]

8
common/Cargo.toml

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

1
common/src/domain/mod.rs

@ -0,0 +1 @@
//! Domain information.

1
common/src/lib.rs

@ -0,0 +1 @@
pub mod domain;

8
store/Cargo.toml

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

1
store/src/domain/mod.rs

@ -0,0 +1 @@
//! Store own domain.

1
store/src/lib.rs

@ -0,0 +1 @@
mod domain;
Loading…
Cancel
Save