diff options
| author | Kjetil Orbekk <kj@orbekk.com> | 2022-11-15 15:06:07 -0500 |
|---|---|---|
| committer | Kjetil Orbekk <kj@orbekk.com> | 2022-11-15 15:06:07 -0500 |
| commit | 1f623cca3ea0937508b8c50f4c32a0972271e8f4 (patch) | |
| tree | 3f5a36296ffc2afb1199cd65f9758c9667115450 /protocol/Cargo.toml | |
| parent | 8fa1b37bb705371bf5dee574f1f136019d3db9d1 (diff) | |
Move shared bridge library code into `protocol` crate
Diffstat (limited to 'protocol/Cargo.toml')
| -rw-r--r-- | protocol/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index b217d93..473e0e3 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -9,3 +9,14 @@ edition = "2021" 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" +anyhow = "1.0" +strum = "0.24" +strum_macros = "0.24" +log = "0.4" +regex = "1.0" +lazy_static = "1.4" + +[dev-dependencies] +env_logger = "0.8.4" +dotenv = "0.15" |
