-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
37 lines (34 loc) · 941 Bytes
/
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
30
31
32
33
34
35
36
37
[package]
name = "forester-rs"
description = "Workflow framework based on the behavior trees"
authors = ["BorisZhguchev <[email protected]>"]
homepage = "https://github.com/besok/forester"
repository = "https://github.com/besok/forester"
version = "0.4.1"
edition = "2021"
license-file = "LICENSE"
[dependencies]
parsit = "0.2.0"
graphviz-rust = "0.9.0"
logos = "0.13.0"
itertools = "0.12.1"
strum = { version = "0.26.2", features = [] }
strum_macros = "0.26.2"
log = "0.4"
env_logger = "0.11.3"
serde = { version = "1.0.166", features = ["derive"] }
serde_json = { version = "1.0.99" }
serde_yaml = "0.9.22"
reqwest = { version = "0.11", features = ["blocking", "json"] }
tracing = "0.1"
axum = "0.6.16"
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = "0.7.11"
hyper = "0.14.27"
chrono = "0.4.26"
quick-xml = "0.31.0"
tungstenite = "0.21.0"
url = "2.4.1"
[dev-dependencies]
wiremock = "0.6.0"
forester-http = "0.1.0"