-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (45 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
52 lines (45 loc) · 1.24 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "testsuite"
version = "0.0.0"
edition = "2024"
description = "Devolutions Gateway Rust test suite"
publish = false
autotests = false
[lib]
doctest = false
test = false
[[test]]
name = "integration_tests"
path = "tests/main.rs"
harness = true
[dependencies]
anyhow = "1.0"
assert_cmd = "2.1"
dynosaur = "0.3"
escargot = "0.5"
expect-test = "1.5"
fastrand = "2"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
tempfile = "3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "net", "process"] }
tokio-util = "0.7"
typed-builder = "0.21"
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-native-roots"] }
[dev-dependencies]
base64 = "0.22"
proxy-socks = { path = "../crates/proxy-socks" }
libsql = { version = "0.9", default-features = false, features = ["core"] }
mcp-proxy.path = "../crates/mcp-proxy"
rstest = "0.25"
serde_json = "1"
sysevent.path = "../crates/sysevent"
tempfile = "3"
test-utils.path = "../crates/test-utils"
tokio-rustls = { version = "0.26", features = ["ring"] }
[target.'cfg(unix)'.dev-dependencies]
sysevent-syslog.path = "../crates/sysevent-syslog"
[target.'cfg(windows)'.dev-dependencies]
sysevent-winevent.path = "../crates/sysevent-winevent"
[lints]
workspace = true