{"id":18753585,"url":"https://github.com/auracletech/ahri","last_synced_at":"2025-11-28T10:30:18.351Z","repository":{"id":226638166,"uuid":"697447503","full_name":"AuracleTech/ahri","owner":"AuracleTech","description":"ahri is a database 🗳","archived":false,"fork":false,"pushed_at":"2023-11-28T21:43:12.000Z","size":61,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-29T09:16:59.286Z","etag":null,"topics":[],"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/AuracleTech.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOD.md","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":"2023-09-27T18:45:12.000Z","updated_at":"2023-09-27T18:47:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"ad060162-e2ac-4470-a7e1-fc7d03c8eeb5","html_url":"https://github.com/AuracleTech/ahri","commit_stats":null,"previous_names":["auracletech/ahri"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AuracleTech%2Fahri","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AuracleTech%2Fahri/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AuracleTech%2Fahri/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AuracleTech%2Fahri/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AuracleTech","download_url":"https://codeload.github.com/AuracleTech/ahri/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239644165,"owners_count":19673578,"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":[],"created_at":"2024-11-07T17:26:19.224Z","updated_at":"2025-11-28T10:30:18.292Z","avatar_url":"https://github.com/AuracleTech.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ahri\n\nahri is a database 🗳\n\n##### Completed\n\n- [x] Database structure\n- [ ] Async support\n- [x] Serialization / Deserialization\n- [ ] ACID transactions\n\n##### Example\n\n```rust\nuse ahri::Table;\nuse serde::{Deserialize, Serialize};\n\n#[derive(Serialize, Deserialize, Debug)]\nstruct Book {\n    name: String,\n    year: u16,\n}\n\nfn main() -\u003e Result\u003c(), Box\u003cdyn std::error::Error\u003e\u003e {\n    let default_book = Book {\n        name: \"Unknown Book\".to_string(),\n        year: 0,\n    };\n\n    let mut bookshelf = Table::from_structure(default_book);\n\n    for i in 0..7 {\n        let book_name = format!(\"Harry Potter {}\", i + 1);\n        let new_book = Book {\n            name: book_name.clone(),\n            year: 1997 + i as u16,\n        };\n        bookshelf.insert(\u0026book_name, new_book);\n    }\n\n    println!(\"Bookshelf: {:#?}\", bookshelf);\n\n    Ok(())\n}\n```\n\n##### Result\n\n```rust,ignore\nBookshelf: Table {\n    default: Book {\n        name: \"Unknown Book\",\n        year: 0,\n    },\n    rows: {\n        \"Harry Potter 3\": Book {\n            name: \"Harry Potter 3\",\n            year: 1999,\n        },\n        \"Harry Potter 6\": Book {\n            name: \"Harry Potter 6\",\n            year: 2002,\n        },\n        \"Harry Potter 7\": Book {\n            name: \"Harry Potter 7\",\n            year: 2003,\n        },\n        \"Harry Potter 2\": Book {\n            name: \"Harry Potter 2\",\n            year: 1998,\n        },\n        \"Harry Potter 4\": Book {\n            name: \"Harry Potter 4\",\n            year: 2000,\n        },\n        \"Harry Potter 5\": Book {\n            name: \"Harry Potter 5\",\n            year: 2001,\n        },\n        \"Harry Potter 1\": Book {\n            name: \"Harry Potter 1\",\n            year: 1997,\n        },\n    },\n}\n```\n\n##### Performances\n\ncreation of 4 tables and for each inserting 1000 entries in `766 µs`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauracletech%2Fahri","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauracletech%2Fahri","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauracletech%2Fahri/lists"}