summaryrefslogtreecommitdiff
path: root/protocol/Cargo.toml
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-11-27 16:45:07 -0500
committerKjetil Orbekk <kj@orbekk.com>2022-11-27 17:23:11 -0500
commitd8de16a7187d2a05fd043946cf4cb32449a5aa3b (patch)
tree6c1a212232203dbb6a9da48c192e10bef5d3b932 /protocol/Cargo.toml
parent854f247b6b7bf1106f31d7f23a326c0904d4f87e (diff)
Add basic bot trait for bot bidding
Diffstat (limited to 'protocol/Cargo.toml')
-rw-r--r--protocol/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml
index 473e0e3..c7dda82 100644
--- a/protocol/Cargo.toml
+++ b/protocol/Cargo.toml
@@ -10,12 +10,14 @@ serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
uuid = { version = "1.2.0", features = ["serde", "wasm-bindgen", "v4", "fast-rng"] }
rand = "0.8.4"
+tokio = { version = "1.21.2", features = ["full"] }
anyhow = "1.0"
strum = "0.24"
strum_macros = "0.24"
log = "0.4"
regex = "1.0"
lazy_static = "1.4"
+async-trait = "0.1.58"
[dev-dependencies]
env_logger = "0.8.4"