forked from proxy-wasm/proxy-wasm-rust-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
61 lines (50 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "proxy-wasm-experimental"
version = "0.0.8"
authors = ["Piotr Sikora <[email protected]>", "Yaroslav Skopets <[email protected]>"]
description = "WebAssembly for Proxies"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/yskopets/proxy-wasm-rust-sdk"
edition = "2018"
[features]
wee-alloc = ["wee_alloc"]
[dependencies]
hashbrown = "0.11"
log = "0.4"
wee_alloc = { version = "0.4", optional = true }
[dev-dependencies]
version-sync = "0.9"
cfg-if = "1.0"
chrono = "0.4"
bstr = "0.2"
[target.'cfg(not(all(target_arch = "wasm32", target_os = "unknown")))'.dev-dependencies]
getrandom = "0.2"
[profile.release]
lto = true
opt-level = 3
panic = "abort"
[package.metadata.raze]
package_aliases_dir = "bazel/cargo"
workspace_path = "//bazel/cargo"
genmode = "Remote"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
crate-type = ["cdylib"]
[[example]]
name = "http_auth_random"
path = "examples/http_auth_random.rs"
crate-type = ["cdylib"]
[[example]]
name = "http_headers"
path = "examples/http_headers.rs"
crate-type = ["cdylib"]
[[example]]
name = "http_body"
path = "examples/http_body.rs"
crate-type = ["cdylib"]
[[example]]
name = "http_config"
path = "examples/http_config.rs"
crate-type = ["cdylib"]