[package]
edition = "2021"
rust-version = "1.74"
name = "hotcoco"
version = "0.1.0"
authors = ["Derek Allman <derek.allman@yahoo.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of pycocotools — COCO dataset API for object detection, segmentation, and keypoint evaluation"
homepage = "https://derekallman.github.io/hotcoco/"
readme = "README.md"
keywords = [
"coco",
"object-detection",
"evaluation",
"computer-vision",
"segmentation",
]
categories = [
"computer-vision",
"science",
]
license = "MIT"
repository = "https://github.com/derekallman/hotcoco"
[lib]
name = "hotcoco"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"