https://github.com/bytangle/modern-rust-project-structure
This repo illustrates rust modern project structure
https://github.com/bytangle/modern-rust-project-structure
Last synced: 12 months ago
JSON representation
This repo illustrates rust modern project structure
- Host: GitHub
- URL: https://github.com/bytangle/modern-rust-project-structure
- Owner: bytangle
- Created: 2025-02-11T01:30:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-11T08:33:30.000Z (over 1 year ago)
- Last Synced: 2025-04-12T03:58:06.357Z (about 1 year ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Banking System
This is a Rust-based banking system project demonstrating a modern module structure.
## Project Structure
```
banking_system/
├── Cargo.toml
├── src/
│ ├── lib.rs
│ ├── main.rs
│ ├── accounts.rs
│ ├── accounts/
│ │ ├── user.rs
│ │ ├── admin.rs
│ │ ├── user/
│ │ │ ├── profile.rs
│ │ │ ├── settings.rs
│ │ ├── admin/
│ │ │ ├── permissions.rs
│ │ │ ├── reports.rs
│ ├── transactions.rs
│ ├── transactions/
│ │ ├── deposit.rs
│ │ ├── withdrawal.rs
│ ├── security.rs
│ ├── security/
│ │ ├── auth.rs
│ │ ├── encryption.rs
│ │ ├── hashing.rs
│ ├── shared.rs
│ ├── shared/
│ │ ├── utils.rs
│ │ ├── utils/
│ │ │ ├── say_hi.rs
```
## Description
- `accounts/` - Manages user and admin accounts.
- `transactions/` - Handles deposits and withdrawals.
- `security/` - Implements authentication, encryption, and hashing.
- `shared/utils/` - Contains utility functions, including `say_hi.rs`.
## Running the Project
```sh
cargo run
```
## License
MIT