-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (30 loc) · 1005 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "soro_gps"
version = "1.0.1"
edition = "2021"
description = "A new `gps` library for our old GPS"
repository = "https://github.com/Sooner-Rover-Team/soro_gps"
homepage = "https://github.com/Sooner-Rover-Team"
license = "MIT"
categories = ["science::robotics"]
keywords = ["soro", "sooner-rover-team", "urc", "mars", "rover"]
readme = "README.md"
[lib]
crate-time = ["staticlib"]
[features]
default = ["python"]
python = ["pyo3"]
[dependencies]
pisserror = "0.3.0-rc.2"
tracing = "0.1.41"
pyo3 = { version = "0.23.4", optional = true, features = ["extension-module"] }
soro_sbp_gps = { git = "https://github.com/sooner-rover-team/soro_sbp_gps", version = "0.1.0" }
tokio = { version = "1.43.0", features = ["net", "time"] }
tokio-util = { version = "0.7.13", features = ["net", "codec"] }
tokio-stream = { version = "0.1.17", features = ["net"] }
## python build configuration
[tool.maturin]
bindings = "pyo3"
features = ["python"]
[dev-dependencies]
tracing-subscriber = "0.3.19"