-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 856 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 856 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
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "sp-istio-agent"
version = "0.0.21"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[features]
default = []
non-wasm = []
[[bin]]
name = "test_endpoints"
path = "test_endpoints.rs"
required-features = ["non-wasm"]
[dependencies]
proxy-wasm = "0.2.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
base64 = "0.22"
prost = "0.12"
log = "0.4"
url = "2.5"
regex = "1.5"
[build-dependencies]
prost-build = "0.12"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
hyper = { version = "1.4", features = ["full"] }
tonic = { version = "0.12", features = ["prost"] }
tokio = { version = "1.40", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
mockall = "0.12"
tempfile = "3.10"
assert_matches = "1.5"
futures = "0.3"