Skip to content

Commit

Permalink
corrected issue with caret requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanM974 committed Jan 5, 2025
1 parent ee793b1 commit aedaedf
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ description = "Holistic Interaction Behavioral Oracle Utility - hibou provides u
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
image = "0.24.5" # for rendering interactions
imageproc = "0.23.0" # ...
image_colored_text = "0.1.2" # for drawing colored text
rusttype = "0.9.3" # for fonts and scale for text in images
pest = "2.7.11" # for pest parser
pest_derive = "2.7.11" # ...
clap = {version="3.2.22",features=["yaml"]} # for the command line interface
maplit = "1.0.2" # for !hashset macro etc
itertools = "0.13.0" # for .sorted() etc
rand = "0.8.5" # random number generation e.g. for traversal heuristics for interaction semantics exploration and/or multitrace analysis
graphviz_dot_builder = "0.1.3" # for generating dot files to be used with graphviz
graph_process_manager_core = "0.1.10" #
graph_process_manager_loggers = "0.1.15" #
autour_core = "0.1.11"
autour_process = "0.1.7"
strum = "0.26.3" # for IntoStaticStr
strum_macros = "0.26.4" # ...
image = "=0.24.5" # for rendering interactions
imageproc = "=0.23.0" # ...
image_colored_text = "=0.1.2" # for drawing colored text
rusttype = "=0.9.3" # for fonts and scale for text in images
pest = "=2.7.11" # for pest parser
pest_derive = "=2.7.11" # ...
clap = {version="3.2.22",features=["yaml"]} # for the command line interface
maplit = "=1.0.2" # for !hashset macro etc
itertools = "=0.13.0" # for .sorted() etc
rand = "=0.8.5" # random number generation e.g. for traversal heuristics for interaction semantics exploration and/or multitrace analysis
graphviz_dot_builder = "=0.1.3" # for generating dot files to be used with graphviz
graph_process_manager_core = "=0.1.10" #
graph_process_manager_loggers = "=0.1.15" #
autour_core = "=0.1.11"
autour_process = "=0.1.7"
strum = "=0.26.3" # for IntoStaticStr
strum_macros = "=0.26.4" # ...

0 comments on commit aedaedf

Please sign in to comment.