From a229fc1f533e811fcd00e00ceb53d1283eb244b2 Mon Sep 17 00:00:00 2001 From: Stefano Amorelli Date: Sat, 16 Aug 2025 17:21:23 +0300 Subject: [PATCH] docs: add CITATION.cff for academic citations - Add citation metadata following CFF v1.2.0 standard - Include author information with ORCID - Add project metadata and keywords --- CITATION.cff | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..c781ad3 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,20 @@ +cff-version: 1.2.0 +message: "If you use this software, please cite it as below." +authors: + - family-names: "Amorelli" + given-names: "Stefano" + email: "stefano@amorelli.tech" + orcid: "https://orcid.org/0009-0004-4917-0999" +title: "crabrl: High-performance XBRL parser for SEC EDGAR filings" +version: 0.1.0 +date-released: 2025-01-16 +url: "https://github.com/stefanoamorelli/crabrl" +repository-code: "https://github.com/stefanoamorelli/crabrl" +license: AGPL-3.0 +keywords: + - xbrl + - parser + - sec-edgar + - finance + - rust +abstract: "A high-performance XBRL parser and validator written in Rust, optimized for SEC EDGAR filings. Achieves 50-150x performance gains over traditional parsers through zero-copy parsing, memory-mapped I/O, and Rust's ownership model." \ No newline at end of file