-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (35 loc) · 1017 Bytes
/
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
[workspace]
members = ["derive", ".", "examples/*"]
[workspace.package]
version = "0.1.11"
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
[lib]
name = "fastedge"
[features]
default = []
json = ["serde_json"]
[dependencies]
fastedge-derive = { path = "derive", version = "0.1.11" }
http = "1.1.0"
bytes = "^1.5"
wit-bindgen = "0.30.0"
thiserror = "^1.0"
tracing = "^0.1"
mime = "^0.3"
serde_json = { version = "^1.0", optional = true }
[dev-dependencies]
anyhow = "1.0"