Skip to content

Commit

Permalink
Disable nalgebra feature 'macros'
Browse files Browse the repository at this point in the history
We don't use it, and it adds a dependency on syn v1
  • Loading branch information
FreezyLemon authored and shssoichiro committed Feb 22, 2024
1 parent 1b059f4 commit 61ccc1a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,17 @@ fastmath = []
[dependencies]
av-data = "0.4.1"
log = "0.4.17"
nalgebra = "0.32.2"
num-traits = "0.2.15"
paste = "1.0.9"
thiserror = "1.0.40"
v_frame = "0.3.0"

[dependencies.nalgebra]
version = "0.32.2"
# The default features include macros that we don't need
default-features = false
features = ["std"]

[dev-dependencies]
criterion = "0.4.0"
image = "0.24.4"
Expand Down

0 comments on commit 61ccc1a

Please sign in to comment.