[package]
edition = "2021"
name = "nexstar_rust"
version = "0.1.0"
authors = ["Alexander Semion <spin7ion@gmail.com>"]
build = false
exclude = [".idea/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Celestron NexStar serial protocol: command building and response parsing"
homepage = "https://github.com/spin7ion/nexstar_rust"
documentation = "https://docs.rs/nexstar_rust"
readme = "README.md"
keywords = [
"nexstar",
"celestron",
"telescope",
"protocol",
"mount",
]
categories = [
"encoding",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/spin7ion/nexstar_rust"
[lib]
name = "nexstar_rust"
path = "src/lib.rs"
[[example]]
name = "build_commands"
path = "examples/build_commands.rs"
[[example]]
name = "parse_responses"
path = "examples/parse_responses.rs"
[[test]]
name = "protocol"
path = "tests/protocol.rs"
[dependencies]