-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (41 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
50 lines (41 loc) · 1.23 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
[workspace]
members = ["derive", "."]
[workspace.package]
version = "0.3.5"
edition = "2021"
license = "Apache-2.0"
description = "FastEdge Rust SDK that helps you to create edge cloud application using WASM"
documentation = "https://docs.rs/fastedge"
repository = "https://github.com/G-Core/FastEdge-sdk-rust.git"
authors = ["FastEdge Development Team <fastedge@gcore.com>", "Ruslan Pislari <ruslanti@gmail.com>"]
[package]
name = "fastedge"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
description = { workspace = true }
documentation = { workspace = true }
repository = { workspace = true }
autoexamples = false
readme = "README.md"
keywords = ["wasm", "webassembly", "edge-computing", "serverless", "fastedge"]
categories = ["wasm", "web-programming", "network-programming"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = ["wasm32-wasip1"]
[lib]
name = "fastedge"
[features]
default = ["proxywasm"]
proxywasm = []
json = ["serde_json"]
[dependencies]
fastedge-derive = { path = "derive", version = "0.3" }
http = "1.3"
bytes = "1.10"
wit-bindgen = "0.46"
thiserror = "2.0"
mime = "^0.3"
serde_json = { version = "^1.0", optional = true }
[dev-dependencies]