Skip to content

Commit

Permalink
Finish 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed Jul 10, 2024
1 parent a5b75ba commit 1532b8a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.3.1"
version = "0.3.2"
description = "Very simple coordinate frame conversions"
authors = ["Markus Mayer <widemeadows@gmail.com>"]
categories = ["no-std", "no-std::no-alloc"]
Expand Down
8 changes: 4 additions & 4 deletions crates/coordinate-frame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ readme = "../../README.md"
[features]
std = []
num-traits = ["dep:num-traits"]
defmt = ["dep:defmt"]
micromath = ["dep:micromath"]
nalgebra = ["dep:nalgebra"]
defmt = ["dep:defmt", "coordinate-frame-derive/defmt"]
micromath = ["dep:micromath", "coordinate-frame-derive/micromath"]
nalgebra = ["dep:nalgebra", "coordinate-frame-derive/nalgebra"]

[dependencies]
coordinate-frame-derive = { version = "0.3.1", path = "../../proc-macros/coordinate-frame-derive" }
coordinate-frame-derive = { version = "0.3.2", path = "../../proc-macros/coordinate-frame-derive" }
defmt = { version = "0.3.8", optional = true }
micromath = { version = "2.1.0", optional = true, features = ["vector"] }
nalgebra = { version = ">=0.30.0,<1.0.0", optional = true, default-features = false }
Expand Down
3 changes: 3 additions & 0 deletions proc-macros/coordinate-frame-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ proc-macro = true

[features]
std = []
micromath = []
nalgebra = []
defmt = []

[dependencies]
quote = "1.0.36"
Expand Down

0 comments on commit 1532b8a

Please sign in to comment.