{"id":20697013,"url":"https://github.com/nitindahiya-dev/rust-sqlite-vault","last_synced_at":"2026-04-28T14:34:27.450Z","repository":{"id":248363592,"uuid":"828488131","full_name":"nitindahiya-dev/rust-sqlite-vault","owner":"nitindahiya-dev","description":"Rust-based application that interacts with an SQLite database","archived":false,"fork":false,"pushed_at":"2024-07-15T08:22:04.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-26T12:58:00.814Z","etag":null,"topics":["cli","cli-app","rust","sqlite"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nitindahiya-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-14T09:59:14.000Z","updated_at":"2024-07-15T08:22:07.000Z","dependencies_parsed_at":"2024-07-20T18:08:14.732Z","dependency_job_id":null,"html_url":"https://github.com/nitindahiya-dev/rust-sqlite-vault","commit_stats":null,"previous_names":["nitindahiya199/rust-sqlite-vault","nitindahiya-dev/rust-sqlite-vault"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nitindahiya-dev/rust-sqlite-vault","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitindahiya-dev%2Frust-sqlite-vault","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitindahiya-dev%2Frust-sqlite-vault/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitindahiya-dev%2Frust-sqlite-vault/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitindahiya-dev%2Frust-sqlite-vault/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nitindahiya-dev","download_url":"https://codeload.github.com/nitindahiya-dev/rust-sqlite-vault/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitindahiya-dev%2Frust-sqlite-vault/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263244837,"owners_count":23436480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","cli-app","rust","sqlite"],"created_at":"2024-11-17T00:16:22.110Z","updated_at":"2026-04-28T14:34:22.426Z","avatar_url":"https://github.com/nitindahiya-dev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch2\u003e# 🚀 Rust-SQLite-Vault\u003c/h2\u003e\n\n\u003cp\u003eWelcome to **Rust-SQLite-Vault**! This repository contains a Rust-based application that interacts with an SQLite database. The project demonstrates efficient database handling, secure data storage, and seamless integration with Rust's powerful ecosystem.\u003c/p\u003e\n\n![Rust Logo](https://www.rust-lang.org/static/images/rust-logo-blk.svg)\n\n\u003cp\u003e## 🌟 Introduction\u003c/p\u003e\n\n\u003cp\u003e**Rust-SQLite-Vault** is a project that aims to provide an example of how to use Rust with SQLite for secure and efficient data management. Whether you're a Rustacean or new to Rust, this repository offers valuable insights into using Rust's type system and performance advantages for database applications.\u003c/p\u003e\n\n\u003cp\u003e## ✨ Features\u003c/p\u003e\n\n\u003cli\u003e🚀 **High Performance**: Leveraging Rust's speed and safety for database operations.\u003c/li\u003e\n\u003cli\u003e 🔒 **Security**: Safe and secure data handling.\u003c/li\u003e\n\u003cli\u003e 📦 **Easy Integration**: Simple setup and integration with SQLite.\u003c/li\u003e\n\u003cli\u003e 📜 **Comprehensive Documentation**: Detailed comments and documentation for ease of understanding.\u003c/li\u003e\n\u003cbr\u003e\n\u003cp\u003e## 🛠️ Installation\u003c/p\u003e\n\n\u003cp\u003e### Prerequisites\u003c/p\u003e\n\n\u003cp\u003eEnsure you have the following installed:\u003c/p\u003e\n\n\u003cli\u003e [Rust](https://www.rust-lang.org/learn/get-started)\u003c/li\u003e\n\u003cli\u003e [SQLite](https://www.sqlite.org/download.html)\u003c/li\u003e\n\u003cbr\u003e\n### Steps\n\n1. **Clone the Repository**\n\n    ```sh\n    git clone https://github.com/your-username/rust-sqlite-vault.git\n    cd rust-sqlite-vault\n    ```\n\n2. **Install Dependencies**\n\n    ```sh\n    cargo build\n    ```\n\n3. **Run the Application**\n\n    ```sh\n    cargo run\n    ```\n\n## 🚀 Usage\n\nTo use this application, follow the steps below:\n\n1. **Initialize Database**\n\n    Run the application to initialize and set up your SQLite database.\n\n2. **Perform Operations**\n\n    Use the provided functions to perform CRUD (Create, Read, Update, Delete) operations on the database.\n\n### Example\n\n```rust\n// Example Rust code to interact with the database\nuse rusqlite::{params, Connection};\n\nfn main() -\u003e Result\u003c(), Box\u003cdyn std::error::Error\u003e\u003e {\n    let conn = Connection::open(\"my_database.db\")?;\n    conn.execute(\n        \"CREATE TABLE IF NOT EXISTS user (id INTEGER PRIMARY KEY, name TEXT NOT NULL, age INTEGER NOT NULL)\",\n        params![],\n    )?;\n    conn.execute(\"INSERT INTO user (name, age) VALUES (?1, ?2)\", params![\"Alice\", 30])?;\n    Ok(())\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitindahiya-dev%2Frust-sqlite-vault","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnitindahiya-dev%2Frust-sqlite-vault","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitindahiya-dev%2Frust-sqlite-vault/lists"}