{"id":21311982,"url":"https://github.com/vhidvz/naming-conventions","last_synced_at":"2026-04-01T21:06:33.505Z","repository":{"id":192912830,"uuid":"667332849","full_name":"vhidvz/naming-conventions","owner":"vhidvz","description":"Simple and Fast naming convention library.","archived":false,"fork":false,"pushed_at":"2023-09-06T17:06:57.000Z","size":4156,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-16T04:30:56.561Z","etag":null,"topics":["naming-conventions","rust","rust-lib"],"latest_commit_sha":null,"homepage":"https://docs.rs/naming-conventions","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vhidvz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-07-17T09:12:07.000Z","updated_at":"2025-10-25T10:01:14.000Z","dependencies_parsed_at":"2024-11-21T17:35:21.324Z","dependency_job_id":null,"html_url":"https://github.com/vhidvz/naming-conventions","commit_stats":null,"previous_names":["vhidvz/naming-conventions"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/vhidvz/naming-conventions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vhidvz%2Fnaming-conventions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vhidvz%2Fnaming-conventions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vhidvz%2Fnaming-conventions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vhidvz%2Fnaming-conventions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vhidvz","download_url":"https://codeload.github.com/vhidvz/naming-conventions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vhidvz%2Fnaming-conventions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31044973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-27T09:35:52.079Z","status":"ssl_error","status_checked_at":"2026-03-27T09:35:20.916Z","response_time":164,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["naming-conventions","rust","rust-lib"],"created_at":"2024-11-21T17:22:54.428Z","updated_at":"2026-04-01T21:06:33.477Z","avatar_url":"https://github.com/vhidvz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Naming Conventions\n\n[![crates.io][crate-image]][crate-link]\n![MSRV][msrv-image]\n[![Documentation][doc-image]][doc-link]\n[![LICENSE][license-image]][license-link]\n[![codecov][codecov-image]][codecov-link]\n[![Build Status][build-image]][build-link]\n[![dependency status][deps-image]][deps-link]\n![downloads][downloads-image]\n\nSimple and Fast naming convention library.\n\n## Quick Start Guide\n\n```rust\nuse naming_conventions::{get_convention, CaseName};\n\nfn main() {\n  let snake_case = get_convention(CaseName::SnakeCase);\n\n  let string = \"camelCase\";\n\n  println!(\"to snake_case: {}\", snake_case.to(string).unwrap());\n  println!(\"is snake_case: {}\", snake_case.is(string).unwrap());\n}\n```\n\n```rust\nuse naming_conventions::{to_snake_case, is_snake_case};\n\nfn main() {\n  let string = \"camelCase\";\n\n  println!(\"to snake_case: {}\", to_snake_case(string).unwrap());\n  println!(\"is snake_case: {}\", is_snake_case(string).unwrap());\n}\n```\n\n## License\n\n[MIT](https://github.com/vhidvz/naming-conventions/blob/main/LICENSE)\n\n[//]: # \"badges\"\n[crate-image]: https://img.shields.io/crates/v/naming-conventions?label=latest\n[crate-link]: https://crates.io/crates/naming-conventions\n[doc-image]: https://img.shields.io/docsrs/naming-conventions\n[doc-link]: https://docs.rs/naming-conventions\n[msrv-image]: https://img.shields.io/badge/rustc-1.68+-blue.svg\n[build-image]: https://github.com/vhidvz/naming-conventions/actions/workflows/ci.yml/badge.svg\n[build-link]: https://github.com/vhidvz/naming-conventions/actions/workflows/ci.yml\n[license-image]: https://img.shields.io/github/license/vhidvz/workflow-js?style=flat\n[license-link]: https://github.com/vhidvz/workflow-js/blob/master/LICENSE\n[codecov-image]: https://raw.githubusercontent.com/vhidvz/naming-conventions/main/docs/coverage/badges/flat.svg\n[codecov-link]: https://htmlpreview.github.io/?https://github.com/vhidvz/naming-conventions/blob/main/docs/coverage/index.html\n[deps-image]: https://deps.rs/repo/github/vhidvz/naming-conventions/status.svg\n[deps-link]: https://deps.rs/repo/github/vhidvz/naming-conventions\n[downloads-image]: https://img.shields.io/crates/d/naming-conventions.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvhidvz%2Fnaming-conventions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvhidvz%2Fnaming-conventions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvhidvz%2Fnaming-conventions/lists"}