| Crates.io | cantara |
| lib.rs | cantara |
| version | 0.3.0 |
| created_at | 2025-05-11 18:58:45.94468+00 |
| updated_at | 2025-07-17 20:29:42.286918+00 |
| description | Software for Song Presentation in Churches |
| homepage | |
| repository | https://github.com/CantaraProject/Cantara |
| max_upload_size | |
| id | 1669625 |
| size | 1,489,703 |
Cantara is a powerful song presentation software designed for churches and small groups. It allows you to quickly create beautiful presentations with song lyrics, chords, sheet music, and more. This repository contains version 3.0, a complete rewrite of the original Cantara in Rust using the Dioxus framework.
Work is currently in progress. Contributions are welcome!
If you don't have Rust installed, you can install it using rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
For Windows, download and run the installer from the rustup website.
Once Rust is installed, you can install the Dioxus CLI:
cargo install dioxus-cli
Clone the repository and build the application:
git clone https://github.com/CantaraProject/Cantara.git
cd Cantara
cargo build --release
The compiled binary will be available in the target/release directory.
To develop the app locally, run the following command in the root of your project:
dx serve
This will start a development server with hot reloading.
The project is documented with Rust's documentation features.
Generate documentation with cargo doc to explore the structure and the meaning of the modules and symbols.
As this is a rewrite, the implementation status is not directly comparable to the original Cantara repository. The following table shows the features that are currently implemented or planned for this version:
| Feature | Status |
|---|---|
| Song Lyrics Presentation | ✅ Implemented |
| Presentation Styling | Partially implemented |
| Chord Presentation | ❌ Not Implemented, in Progress |
| Image Presentation | ❌ Not Implemented, in Progress |
| PDF Presentation | ❌ Not Implemented, in Progress |
| Search Functionality | ✅ Implemented |
| Import SongText Files | ❌ Not Implemented, in Progress |
| Export SongText Files | ❌ Not Implemented, in Progress |
| Export pptx Files | ❌ Not Implemented, in Progress |
Contributions are welcome! If you'd like to contribute to Cantara, please follow these steps:
If you would like additional features for Cantara, please feel free to open an issue or a pull request.
unwrap calls in production code, you can use ùnwrap_or_else or unwrap_or_default instead.This project is licensed under the terms of AGPL. See the COPYING file for details.