22 lines
508 B
TOML
22 lines
508 B
TOML
[package]
|
|
name = "aniker-gps"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
authors = ["Richard Patching <richard@simaker.com>"]
|
|
description = "A Rust library for parsing NMEA GPS sentences"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://code.hackmarine.com/hackmarine/aniker-gps"
|
|
readme = "README.md"
|
|
keywords = ["gps", "nmea", "parser", "navigation"]
|
|
categories = ["parsing", "science", "embedded"]
|
|
|
|
[lib]
|
|
name = "aniker_gps"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "aniker-gps"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|