Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 0 additions & 91 deletions CONTRIBUTING.md

This file was deleted.

142 changes: 71 additions & 71 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 7 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "1.3.0"
version = "1.0.0"
authors = ["Edgee <opensource@edgee.cloud>"]
license = "Apache-2.0"
keywords = ["edgee"]
Expand All @@ -20,6 +20,7 @@ base64 = "0.22.1"
bon = "3.6.5"
brotli = "8.0.1"
bytes = "1.10.1"
cargo-llvm-cov = "0.6.18"
cbc = "0.1.2"
chrono = "0.4.41"
clap = "4.5.41"
Expand All @@ -29,6 +30,8 @@ colored_json = "5.0.0"
cookie = "0.18.1"
dirs = "6.0.0"
easy-ext = "1.0.2"
edgee-dc-sdk = "1.9.0"
edgee-components-runtime = "1.3.0"
futures = "0.3.31"
hex = "0.4.3"
html-escape = "0.2.13"
Expand All @@ -52,6 +55,7 @@ open = "5.3.2"
openssl = "0.10.73"
os_info = "3.12.0"
pin-project = "1.1.10"
pretty_assertions = "1.4.1"
progenitor = "0.11.0"
progenitor-client = "0.11.0"
rand = "0.9.2"
Expand Down Expand Up @@ -89,12 +93,5 @@ wasmtime-wasi-http = "37.0"
wit-deps = "0.5.0"
zip = "5.1.1"

cargo-llvm-cov = "0.6.18"
pretty_assertions = "1.4.1"

edgee-dc-sdk = "1.9.0"
edgee-components-runtime = "1.3.0"

edgee-api-client = { version = "1.3.0", path = "crates/api-client" }
edgee-proxy = { version = "1.3.0", path = "crates/proxy" }

proxy = { path = "crates/proxy" }
api-client = { path = "crates/api-client" }
11 changes: 0 additions & 11 deletions Dockerfile

This file was deleted.

3 changes: 2 additions & 1 deletion crates/api-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "edgee-api-client"
name = "api-client"
publish = false
description = "Edgee API client"
version.workspace = true
authors.workspace = true
Expand Down
9 changes: 5 additions & 4 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ edition.workspace = true
[dependencies]
anyhow.workspace = true
bon.workspace = true
chrono.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
clap_complete.workspace = true
colored.workspace = true
colored_json.workspace = true
dirs.workspace = true
edgee-components-runtime.workspace = true
http.workspace = true
http-body-util.workspace = true
hyper = { workspace = true, features = ["server"] }
Expand Down Expand Up @@ -49,10 +51,9 @@ uuid = { workspace = true, features = ["v4"] }
wit-deps.workspace = true
zip.workspace = true

edgee-api-client.workspace = true
edgee-proxy.workspace = true
edgee-components-runtime.workspace = true
chrono.workspace = true
api-client.workspace = true
proxy.workspace = true


[features]
bundled = ["openssl/vendored"]
Expand Down
Loading