forked from arjo129/rustros_tf
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
23 lines (21 loc) · 875 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
[package]
name = "rustros_tf"
version = "0.1.0"
authors = ["Arjo Chakravarty <[email protected]>"]
edition = "2018"
description = "This is a rust port of the [ROS tf library](http://wiki.ros.org/tf). It is intended for being used in robots to help keep track of multiple coordinate frames and is part of a larger suite of rust libraries that provide support for various robotics related functionality."
license = "MIT OR Apache-2.0"
keywords = ["transforms", "robotics", "ROS", "tf"]
readme = "readme.md"
documentation = "https://arjo129.github.io/rustros_tf/rustros_tf/index.html"
repository = "https://github.com/arjo129/rustros_tf"
homepage = "https://github.com/arjo129/rustros_tf"
[lib]
crate-type = ["lib"]
bench = false
[dependencies]
rosrust = "0.9"
rosrust_msg = "0.1"
ndarray = "0.13.1"
ndarray-linalg = { version = "0.12", features = ["netlib"] }
nalgebra = "*"