-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 762 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 762 Bytes
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
[package]
name = "polychat-ipc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "test-plugin"
test = false
bench = false
[dependencies]
serde = { version = "1.0.152", features=["derive"] }
serde_json = { version = "1.0.91", features=["raw_value"] }
log = "0.4.17"
walkdir = "2.3.2"
tokio = { version = "1.25.0", features=["net", "time", "io-util", "rt", "macros", "rt-multi-thread", "sync"]}
interprocess = {version="1.2.1", features=["tokio_support"]}
futures = "0.3.25"
anyhow = "1.0.69"
thiserror = "1.0.38"
rand = "0.8.5"
[dev-dependencies]
test-log = "0.2.11"
env_logger = "0.10.0"
rstest = "0.16.0"
assert_cmd = "2.0"
claims = "0.7.1"
testdir = "0.7.1"