{"id":46053230,"url":"https://github.com/swack-tools/oxidex","last_synced_at":"2026-03-01T09:32:04.063Z","repository":{"id":324767239,"uuid":"1087826916","full_name":"swack-tools/oxidex","owner":"swack-tools","description":"Replicates exiftool but in rust, with some additional features.","archived":false,"fork":false,"pushed_at":"2025-12-06T05:24:33.000Z","size":14547,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-06T08:02:53.907Z","etag":null,"topics":["exiftool","metadata","rust"],"latest_commit_sha":null,"homepage":"https://oxidex.net/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/swack-tools.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/contributing/.gitkeep","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-01T18:13:34.000Z","updated_at":"2025-12-06T05:24:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/swack-tools/oxidex","commit_stats":null,"previous_names":["swack-tools/oxidex"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/swack-tools/oxidex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swack-tools%2Foxidex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swack-tools%2Foxidex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swack-tools%2Foxidex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swack-tools%2Foxidex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/swack-tools","download_url":"https://codeload.github.com/swack-tools/oxidex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swack-tools%2Foxidex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29965586,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T06:55:38.174Z","status":"ssl_error","status_checked_at":"2026-03-01T06:53:04.810Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["exiftool","metadata","rust"],"created_at":"2026-03-01T09:32:03.235Z","updated_at":"2026-03-01T09:32:04.035Z","avatar_url":"https://github.com/swack-tools.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OxiDex\n\n[![CI](https://github.com/swack-tools/oxidex/workflows/CI/badge.svg)](https://github.com/swack-tools/oxidex/actions)\n[![Crates.io](https://img.shields.io/crates/v/oxidex.svg)](https://crates.io/crates/oxidex)\n[![License: GPL-3.0](https://img.shields.io/badge/License-GPL--3.0-blue.svg)](LICENSE)\n\nA high-performance Rust implementation of [ExifTool](https://exiftool.org/) for metadata extraction and manipulation.\n\n## What is OxiDex?\n\nOxiDex is a memory-safe, drop-in replacement for the Perl-based ExifTool. It provides the same comprehensive metadata support (32,677+ tags across 140+ formats) with significantly better performance through Rust's zero-cost abstractions and parallel processing.\n\n## Why OxiDex?\n\n- **3.7-9.7x faster** than Perl ExifTool ([see benchmarks](https://oxidex.net/performance/benchmarks))\n- **Memory safe** - No buffer overflows, use-after-free, or data races\n- **Drop-in compatible** - Same CLI arguments as original ExifTool\n- **Cross-platform** - Static binaries for Linux, macOS, and Windows\n- **Library + CLI** - Use as a Rust crate or standalone binary\n\n## Quick Start\n\n### Download Binary\n\nPre-built binaries available on the [Releases page](https://github.com/swack-tools/oxidex/releases).\n\n## Usage\n\n```bash\n# Extract all metadata\noxidex photo.jpg\n\n# Extract specific tags\noxidex -Make -Model -DateTimeOriginal photo.jpg\n\n# Write metadata\noxidex -Artist=\"Your Name\" photo.jpg\n\n# Batch processing\noxidex -r /path/to/photos/\n\n# JSON output\noxidex -json photo.jpg\n```\n\n## Documentation\n\n- [User Guide](https://oxidex.net/) - Installation, usage, and format support\n- [Benchmarks](https://oxidex.net/performance/#benchmark-results) - Performance comparison with Perl ExifTool\n- [API Reference](https://docs.rs/oxidex) - Rust library documentation\n- [GitHub Issues](https://github.com/swack-tools/oxidex/issues) - Bug reports and feature requests\n\n## Development\n\n### Prerequisites\n\nInstall development tools via Homebrew:\n```bash\nbrew install cargo-watch cargo-nextest cargo-audit cargo-outdated\n```\n\nInstall additional tools via Cargo:\n```bash\ncargo install cargo-tarpaulin\n```\n\n### Just Commands\n\nThis project uses [just](https://github.com/casey/just) as a command runner. Run `just` to see all available commands:\n\n```bash\njust          # List all commands\njust ci       # Run full CI checks\njust test     # Run all tests\njust lint     # Run clippy linter\njust fmt      # Format code\n```\n\n## Contributing\n\nContributions welcome! Please ensure:\n- Tests pass (`cargo test`)\n- Code is formatted (`cargo fmt`)\n- Clippy lints pass (`cargo clippy`)\n\n## License\n\n[GPL-3.0](LICENSE)\n\n## Acknowledgments\n\nInspired by and compatible with [ExifTool](https://exiftool.org/) by Phil Harvey. OxiDex is an independent reimplementation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswack-tools%2Foxidex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswack-tools%2Foxidex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswack-tools%2Foxidex/lists"}