Skip to content

Commit

Permalink
TOML attribute features needs to be a sequence
Browse files Browse the repository at this point in the history
"2d" => ["2d"]
"3d" => ["3d"]
  • Loading branch information
gianzellweger authored and Weasy666 committed Apr 11, 2023
1 parent b145b31 commit 17a5eb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ Copy this to your `Cargo.toml`
bevy_svg = "0.10.0-alpha1"

# 2D and 3D are available on default, if you only want/need one, use the following
bevy_svg = { version = "0.10.0-alpha1", default-features = false, features = "2d" }
bevy_svg = { version = "0.10.0-alpha1", default-features = false, features = ["2d"] }
# or
bevy_svg = { version = "0.10.0-alpha1", default-features = false, features = "3d" }
bevy_svg = { version = "0.10.0-alpha1", default-features = false, features = ["3d"] }

# Living on the edge (at your own risk 😅)
bevy_svg = { git = "https://github.com/Weasy666/bevy_svg", branch = "main" }
Expand Down

0 comments on commit 17a5eb2

Please sign in to comment.