-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
84 lines (79 loc) · 1.73 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.8.4"
authors = ["Edgee <[email protected]>"]
license = "Apache-2.0"
keywords = ["edgee"]
repository = "https://github.com/edgee-cloud/edgee"
homepage = "https://www.edgee.cloud"
readme = true
edition = "2021"
[workspace.dependencies]
addr = "0.15.6"
aes = "0.8.4"
anyhow = "1.0.83"
base64 = "0.22.1"
bon = "3.3.2"
brotli = "7.0.0"
bytes = "1.8.0"
cbc = "0.1.2"
chrono = "0.4.38"
clap = "4.5.21"
colored = "3.0.0"
colored_json = "4"
cookie = "0.18.1"
dirs = "6.0.0"
easy-ext = "1.0.2"
futures = "0.3.31"
hex = "0.4.3"
html-escape = "0.2.13"
http = "1.1.0"
http-body-util = "0.1"
hyper = "1.5.1"
hyper-rustls = "0.27.2"
hyper-util = "0.1.5"
inquire = "0.7.5"
ipnetwork = "0.21.0"
json_comments = "0.2.2"
json_pretty = "0.1.2"
lazy_static = "1.5.0"
libflate = "2.1.0"
log = "0.4.22"
miette = "7.4.0"
openssl = "0.10.70"
pin-project = "1.1.7"
progenitor = "0.9.1"
progenitor-client = "0.9.1"
rand = "0.9.0"
regex = "1.11.1"
reqwest = "0.12.9"
rustls = "0.23.19"
rustls-pemfile = "2.2.0"
rustls-pki-types = "1.10.0"
schemars = "0.8.21"
self_update = "0.42.0"
serde = "1.0.215"
serde_json = "1.0.133"
serde_with = "3.11.0"
serde_yml = "0.0.12"
slug = "0.1.6"
tokio = "1.41.1"
tokio-rustls = "0.26.0"
toml = "0.8.12"
tower = "0.5.1"
tower-http = "0.6.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.2"
uuid = "1.11.0"
wasmtime = "29.0.1"
wasmtime-wasi = "29.0.1"
zip = "2.2.2"
cargo-llvm-cov = "0.6.15"
pretty_assertions = "1.4.1"
edgee-sdk = "1.5.0"
edgee-api-client = { version = "0.8.0", path = "crates/api-client" }
edgee-server = { version = "0.8.0", path = "crates/server" }
edgee-components-runtime = { version = "0.8.0", path = "crates/components-runtime" }