[package]
edition = "2021"
rust-version = "1.96"
name = "openf1"
version = "0.1.0"
authors = ["Anh Nguyen <anhnguyen@aaanh.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial Rust client for the OpenF1 API"
homepage = "https://openf1.org"
documentation = "https://docs.rs/openf1"
readme = "README.md"
keywords = [
"openf1",
"f1",
"formula-1",
"api",
"telemetry",
]
categories = [
"api-bindings",
"web-programming",
]
license = "EUPL-1.2"
repository = "https://gitlab.com/aaanh/openf1-client"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "openf1"
path = "src/lib.rs"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = ["time"]
[dev-dependencies.tokio]
version = "1.43"
features = [
"macros",
"rt-multi-thread",
]