-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (24 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "hibou_efm"
version = "0.1.1"
authors = ["Erwan Mahe"]
edition = "2018"
license = "Eclipse-Public-License-2.0 OR Apache-2.0"
description = "Holistic Interaction Behavioral Oracle Utility - hibou provides utilities for the analysis of traces and multi-traces of interaction models"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
image = "0.23.3" # for rendering interactions
imageproc = "0.20.0" # ...
strum = "0.18.0" # for as_static in the graphviz package and others
strum_macros = "0.18.0" # ...
rusttype = "0.8.3" # for fonts and scale for text in images
pest = "2.1.3" # for pest parser
pest_derive = "2.1.0" # ...
clap = {version="2.33.1",features=["yaml"]} # for the command line interface
# ===================
tonic = "0.2"
prost = "0.6"
tokio = { version = "0.2", features = ["macros"] }
bytes = "0.5.4"
[build-dependencies]
tonic-build = "0.2"