-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switching from serdes-yaml to yaml-rust2 (#4)
* Release 1.1.1 - switching from serdes-yaml to yaml-rust2. Also serdes is now no longer required. * Release 1.1.1 - switching from serdes-yaml to yaml-rust2. Also serdes is now no longer required.
- Loading branch information
1 parent
81ee177
commit c1858ce
Showing
4 changed files
with
232 additions
and
174 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rs-opw-kinematics" | ||
version = "1.1.0" | ||
version = "1.1.1" | ||
edition = "2021" | ||
authors = ["Bourumir Wyngs <[email protected]>"] | ||
description = "Inverse and forward kinematics for 6 axis robots with a parallel base and spherical wrist." | ||
|
@@ -17,13 +17,8 @@ maintenance = { status = "actively-developed" } | |
|
||
[dependencies] | ||
nalgebra = "0.32.5" | ||
thiserror = "1.0.59" | ||
serde = { version = "1.0", features = ["derive"] } | ||
yaml-rust2 = "0.8.0" | ||
|
||
|
||
# Bourumir's own branch currently without any major changes so we can use the old one as well | ||
#serde_yaml = { git = "https://github.com/bourumir-wyngs/serde-yaml-bw", branch = "1.0.0" } | ||
serde_yaml = "0.9.34" | ||
regex = "1.10.4" | ||
|
||
[dev-dependencies] | ||
|
Oops, something went wrong.