{"id":20080045,"url":"https://github.com/neoncitylights/etalia","last_synced_at":"2025-11-01T07:03:52.089Z","repository":{"id":210988427,"uuid":"727923043","full_name":"neoncitylights/etalia","owner":"neoncitylights","description":"a citation parser and formatter engine in Rust (work-in-progress)","archived":false,"fork":false,"pushed_at":"2024-02-05T11:59:58.000Z","size":33,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-13T01:24:50.410Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neoncitylights.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","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},"funding":{"github":"neoncitylights"}},"created_at":"2023-12-05T21:19:29.000Z","updated_at":"2025-01-06T03:06:51.000Z","dependencies_parsed_at":"2023-12-11T23:25:28.761Z","dependency_job_id":"3c5bd3d2-6e87-48ae-859d-5c208f7f40f4","html_url":"https://github.com/neoncitylights/etalia","commit_stats":null,"previous_names":["neoncitylights/etalia"],"tags_count":0,"template":false,"template_full_name":"neoncitylights/rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoncitylights%2Fetalia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoncitylights%2Fetalia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoncitylights%2Fetalia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoncitylights%2Fetalia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neoncitylights","download_url":"https://codeload.github.com/neoncitylights/etalia/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241510639,"owners_count":19974264,"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":["apa","chicago","citation","mla"],"created_at":"2024-11-13T15:25:49.982Z","updated_at":"2025-11-01T07:03:52.027Z","avatar_url":"https://github.com/neoncitylights.png","language":"Rust","funding_links":["https://github.com/sponsors/neoncitylights"],"categories":[],"sub_categories":[],"readme":"# Rust Repository Template 🦀\n\nRepository template to get quickly started with writing Rust libraries, ready for distributing.\n\n## Getting started\n\nOpen your favorite terminal and clone this locally.\n\n- With the [GitHub CLI](https://cli.github.com/): Use the command below. Replace `\u003cproject\u003e` with what you'd like to call your project.\n\n   ```shell\n   gh repo create \u003cproject\u003e --template neoncitylights/rust\n   ```\n\n- With the GitHub UI: You can create a new repository based on this template by clicking the \"Use this template\" button in the top-right corner of this page.\n\n## Features\n\n- [x] Remote development support with [GitHub Codespaces](https://github.com/features/codespaces)\n- [x] Debugging with the [LLDB Debugger](https://lldb.llvm.org/) tool in Visual Studio Code ([VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb))\n- [x] Fuzz testing with LLVM's [libFuzzer](https://llvm.org/docs/LibFuzzer.html) tool and [`cargo fuzz`](https://github.com/rust-fuzz/cargo-fuzz) ([Reference](https://rust-fuzz.github.io/book/introduction.html))\n- [x] Performance benchmarks in Rust with Criterion and Iai (suitable to run in GitHub Actions CI environments)\n- [x] CI/CD support with [GitHub Actions](https://github.com/features/actions)\n- [x] Running tests and benchmarks\n- [x] Running [Rustfmt](https://github.com/rust-lang/rustfmt) and [Clippy](https://github.com/rust-lang/rust-clippy) for detecting formatting and linting errors, respectively\n- [x] Weekly, midnight scheduled audits of Rust packages (for outdated dependencies, compatible software licenses, and software vulnerabilities) with [`EmbarkStudios/cargo-deny-action`](https://github.com/EmbarkStudios/cargo-deny-action)\n\n## Configure\n\n| Tool                     | File path                                                | Reference                                                                                                        |\n|--------------------------|----------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|\n| GitHub Codespaces        | [`devcontainer.json`](./.devcontainer/devcontainer.json) | [Reference](https://containers.dev/implementors/json_reference/)                                                 |\n| GitHub Actions           | [`.github/workflows`](./.github/workflows)               | [Reference](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions)               |\n| Cargo package            | [`Cargo.toml`](crates/pkg1/Cargo.toml)                            | [Reference](https://doc.rust-lang.org/cargo/reference/manifest.html)                                             |\n| Clippy (Rust linter)     | [`.clippy.toml`](./.clippy.toml)                         | [Repository](https://github.com/rust-lang/rust-clippy), [Reference]( https://rust-lang.github.io/rust-clippy/) |\n| Rustfmt (Rust formatter) | [`.rustfmt.toml`](./.rustfmt.toml)                       | [Repository](https://github.com/rust-lang/rustfmt), [Reference](https://rust-lang.github.io/rustfmt/)           |\n| `cargo-deny`             | [`deny.toml`](./deny.toml)                               | [Repository](https://github.com/EmbarkStudios/cargo-deny)                                                        |\n\n## Run scripts locally\n\n| Script      | Command |\n|-------------|---------|\n| Run unit/integration/doc tests | `cargo test` |\n| Run fuzz tests | `cargo fuzz \u003cfuzz-target\u003e` |\n| Run Rustfmt | `cargo fmt` |\n| Run Clippy | `cargo clippy` |\n| Run performance benchmarks | `cargo bench` |\n| Generate API docs for crate | `cargo doc` |\n| Generate mdBook docs for crate | `mdbook build` |\n| Run security audits | `cargo audit`[^cargo-audit] |\n\n[^cargo-audit]: Requires installing [`cargo-audit`](https://crates.io/crates/cargo-audit) locally\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneoncitylights%2Fetalia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneoncitylights%2Fetalia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneoncitylights%2Fetalia/lists"}