Skip to content

Commit

Permalink
fix turtle version
Browse files Browse the repository at this point in the history
sunjay/turtle#183 but use the latest commit as workaround
  • Loading branch information
askbow committed Jun 18, 2023
1 parent 2eee54c commit 61150f2
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
6 changes: 5 additions & 1 deletion lsystems_easy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
turtle = "1.0.0-rc.3"
# Use this particular commit of the turtle crate
turtle = {git = "https://github.com/sunjay/turtle", rev = "0a30fd36c7f345d973c39ad9eca3614f543c8dbb"}

[profile.dev.package."*"]
opt-level = 3
7 changes: 6 additions & 1 deletion lsystems_interpreter0/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
turtle = "1.0.0-rc.3"
# Use this particular commit of the turtle crate
turtle = {git = "https://github.com/sunjay/turtle", rev = "0a30fd36c7f345d973c39ad9eca3614f543c8dbb"}


[profile.dev.package."*"]
opt-level = 3
7 changes: 6 additions & 1 deletion lsystems_interpreter1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
turtle = "1.0.0-rc.3"
# Use this particular commit of the turtle crate
turtle = {git = "https://github.com/sunjay/turtle", rev = "0a30fd36c7f345d973c39ad9eca3614f543c8dbb"}


[profile.dev.package."*"]
opt-level = 3
7 changes: 6 additions & 1 deletion lsystems_interpreter2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
turtle = "1.0.0-rc.3"
# Use this particular commit of the turtle crate
turtle = {git = "https://github.com/sunjay/turtle", rev = "0a30fd36c7f345d973c39ad9eca3614f543c8dbb"}


[profile.dev.package."*"]
opt-level = 3
8 changes: 7 additions & 1 deletion lsystems_nice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,10 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
turtle = { version = "1.0.0-rc.3" }
# Use this particular commit of the turtle crate
turtle = {git = "https://github.com/sunjay/turtle", rev = "0a30fd36c7f345d973c39ad9eca3614f543c8dbb"}



[profile.dev.package."*"]
opt-level = 3

0 comments on commit 61150f2

Please sign in to comment.