-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
45 lines (43 loc) · 1.17 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"crates/*",
"test_components/add_wasm",
"test_providers/maths_provider"
]
[workspace.dependencies]
extism-pdk = "1.0.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0.71"
log = "0.4"
foreach = "0.3.0"
nuid = "0.3.2"
beady = "0.6.0"
assert-json-diff = "2.0.2"
cast_trait_object = "0.1.3"
async-trait = "0.1.60"
regex-lexer = "0.2.0"
regex = "1.8.1"
fp_rust = {version = "0.3.5", features = ["for_futures"]}
rayon = "1.7.0"
futures = {version = "0.3.25", features = ["thread-pool"] }
futures-lite = "1.12.0"
simple_logger = "4.3.3"
base64 = "0.21.7"
is-url = "1.0.4"
tokio = {version="1", features=["full"]}
chrono = {version="0.4.34", default-features = false, features = ["clock"]}
tempdir = "0.3.7"
array_tool = "1.0.3"
dyn-clone = "1.0.11"
bincode = "1.3.3"
once_cell = "1.18.0"
bytes = "1.4.0"
reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json"] }
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies but not for our code:
[profile.dev.package."*"]
opt-level = 3