
Next-generation color barcode system with 50x data density
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
Monolith is revolutionizing how we store and transfer data in the physical world. By leveraging layered hexagonal color patterns, we've created a barcode system that can store up to 50x more data than traditional QR codes while being significantly more resilient to damage.
Key Features:
- 📦 High Data Density: Store up to 50x more data than traditional barcodes
- 🛡️ Damage Resistant: Maintains readability even with 30% physical damage
- 🎨 Color Innovation: Uses RGB/CMYK layers for enhanced data capacity
- 🔄 Format Flexibility: Supports text, URLs, binary data, and more
- 📱 Universal Scanning: Works with any RGB/CMYK-capable scanner
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
-
Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-
Clone the repo
git clone https://github.com/jbirbal-skydom/monolith.git cd monolith git submodule init git submodule update
-
Build the project
cargo build --release
-
Run tests
cargo test
Why multi-binary approach I chose a multi-binary approach split into distinct security domains. This decision stems from several security and operational considerations. By separating the system into multiple binaries, we create natural security boundaries between different components, following the principle of least privilege. The core cryptographic operations can run in a separate process from the networking stack, and the audit logging system can operate independently.
The main meta-repository that brings together all Monolith components. This repository uses Git submodules to manage the individual components and provides a unified build system for the entire Monolith ecosystem.
- Purpose: Project coordination, system-wide documentation, and integrated builds
- Dependencies: All other repositories as submodules
- Key Features: Workspace management, CI/CD pipelines, system-wide testing
Shared library containing common utilities, types, and interfaces used across all Monolith components.
- Purpose: Code reuse, standardization, and interface definitions
- Key Features: Crypto primitives, common traits, shared types, communication protocols
- Used By: All other Monolith components
The graphical user interface component for the Monolith system.
- Purpose: User interaction and data visualization
- Dependencies: monolith-common
- Key Features: Color pattern visualization, code generation interface, scanning interface
Core processing and coordination component of the Monolith system.
- Purpose: Central coordination and main business logic
- Dependencies: monolith-common
- Key Features: Request handling, component coordination, main processing pipeline
Data processing and analysis component.
- Purpose: Handle data transformation and processing
- Dependencies: monolith-common
- Key Features: Data validation, transformation, pattern recognition
Code generation and pattern creation component.
- Purpose: Generate Monolith codes and patterns
- Dependencies: monolith-common
- Key Features: Pattern generation, code optimization, error correction
Output handling and export component.
- Purpose: Handle final code output and export
- Dependencies: monolith-common
- Key Features: Output formatting, file export, printing preparation
Security and key management component.
- Purpose: Handle all cryptographic operations and key management
- Dependencies: monolith-common
- Key Features: Ephemeral key generation, key distribution, signature verification
use monolith::encoder;
let data = "Hello, Monolith!";
let code = encoder::generate(data, Options::default());
code.save("my_code.png")?;
use monolith::decoder;
let code = decoder::scan_from_image("code.png")?;
println!("Decoded data: {}", code.data());
For more examples and usage, please refer to the Documentation
- Core encoding/decoding engine
- Basic RGB/CMYK support
- Error correction implementation
- Mobile SDK
- iOS Framework
- Android Library
- Web Components
- Enterprise Features
See the open issues for a full list of proposed features and known issues.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
Project Link: https://github.com/jbirbal-skydom/monolith