Skip to content

Commit

Permalink
chore: prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswk committed Nov 1, 2023
1 parent d27b81d commit fbd72a8
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 41 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![crates.io](https://img.shields.io/crates/v/unleash-edge?label=latest)](https://crates.io/crates/unleash-edge)
[![Documentation](https://docs.rs/unleash-edge/badge.svg?version=latest)](https://docs.rs/unleash-edge/latest)
![MIT licensed](https://img.shields.io/crates/l/unleash-edge.svg)
[![Dependency Status](https://deps.rs/crate/unleash-edge/14.0.0/status.svg)](https://deps.rs/crate/unleash-edge/14.0.0)
[![Dependency Status](https://deps.rs/crate/unleash-edge/16.0.0/status.svg)](https://deps.rs/crate/unleash-edge/16.0.0)
[![CI](https://github.com/Unleash/unleash-edge/actions/workflows/test-with-coverage.yaml/badge.svg)](https://github.com/Unleash/unleash-edge/actions/workflows/test-with-coverage.yaml)
[![Coverage Status](https://coveralls.io/repos/github/Unleash/unleash-edge/badge.svg?branch=main)](https://coveralls.io/github/Unleash/unleash-edge?branch=main)
![downloads](https://img.shields.io/crates/d/unleash-edge.svg)
Expand Down Expand Up @@ -61,6 +61,11 @@ Options:
App name. Used for metrics reporting [env: APP_NAME=] [default: unleash-edge]
-h, --help
Print help
-l, --log-format <LOG_FORMAT>
Which log format should Edge use
[env: LOG_FORMAT=]
[default: `plain`]
Possible values: `plain`, `json`, `pretty`
```
### Built-in Health check
Expand Down
58 changes: 39 additions & 19 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,44 +19,64 @@ actix-cors = "0.6.4"
actix-http = { version = "3.4.0", features = ["compress-zstd", "rustls-0_21"] }
actix-middleware-etag = "0.2.0"
actix-service = "2.0.2"
actix-web = {version = "4.4.0", features = ["rustls-0_21", "compress-zstd"]}
actix-web = { version = "4.4.0", features = ["rustls-0_21", "compress-zstd"] }
ahash = "0.8.6"

anyhow = "1.0.75"
async-trait = "0.1.74"
chrono = {version = "0.4.31", features = ["serde"]}
chrono = { version = "0.4.31", features = ["serde"] }
cidr = "0.2.2"
clap = {version = "4.4.7", features = ["derive", "env"]}
clap = { version = "4.4.7", features = ["derive", "env"] }
clap-markdown = "0.1.3"
dashmap = "5.5.3"
futures = "0.3.28"
futures-core = "0.3.28"
iter_tools = "0.2.0"
futures = "0.3.29"
futures-core = "0.3.29"
iter_tools = "0.4.0"
itertools = "0.11.0"
lazy_static = "1.4.0"
num_cpus = "1.16.0"
opentelemetry = {version = "0.20.0", features = ["trace", "rt-tokio", "metrics"]}
opentelemetry = { version = "0.20.0", features = [
"trace",
"rt-tokio",
"metrics",
] }
opentelemetry-prometheus = "0.13.0"
opentelemetry-semantic-conventions = "0.12.0"
opentelemetry_sdk = { version = "0.20.0", features = ["metrics", "serde", "serde_json", "rt-tokio-current-thread", "logs"] }
prometheus = {version = "0.13.3", features = ["process"]}
opentelemetry_sdk = { version = "0.20.0", features = [
"metrics",
"serde",
"serde_json",
"rt-tokio-current-thread",
"logs",
] }
prometheus = { version = "0.13.3", features = ["process"] }
prometheus-static-metric = "0.5.1"
redis = {version = "0.23.3", features = ["tokio-comp", "tokio-rustls-comp"]}
reqwest = {version = "0.11.22", default-features = false, features = ["rustls", "json", "rustls-tls", "native-tls"]}
redis = { version = "0.23.3", features = ["tokio-comp", "tokio-rustls-comp"] }
reqwest = { version = "0.11.22", default-features = false, features = [
"rustls",
"json",
"rustls-tls",
"native-tls",
] }
rustls = "0.21.8"
rustls-pemfile = "1.0.3"
serde = {version = "1.0.189", features = ["derive"]}
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
serde_qs = { version = "0.12.0", features = ["actix4", "tracing"] }
shadow-rs = "0.24.1"
tokio = {version = "1.33.0", features = ["macros", "rt-multi-thread", "tracing", "fs"]}
tracing = {version = "0.1.40", features = ["log"]}
tracing-subscriber = {version = "0.3.17", features = ["json", "env-filter"]}
tokio = { version = "1.33.0", features = [
"macros",
"rt-multi-thread",
"tracing",
"fs",
] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }
ulid = "1.1.0"
unleash-types = { version = "0.10", features = ["openapi", "hashes"]}
unleash-types = { version = "0.10", features = ["openapi", "hashes"] }
unleash-yggdrasil = { version = "0.7.0" }
utoipa = {version = "4", features = ["actix_extras", "chrono"]}
utoipa-swagger-ui = {version = "4", features = ["actix-web"]}
utoipa = { version = "4", features = ["actix_extras", "chrono"] }
utoipa-swagger-ui = { version = "4", features = ["actix-web"] }
[dev-dependencies]
actix-http = "3.4.0"
actix-http-test = "3.1.0"
Expand All @@ -66,7 +86,7 @@ maplit = "1.0.2"
rand = "0.8.5"
test-case = "3.2.1"
testcontainers = "0.15.0"
testcontainers-modules = { version = "0.1.3", features = ["redis"]}
testcontainers-modules = { version = "0.1.3", features = ["redis"] }
tracing-test = "0.2.4"

[build-dependencies]
Expand Down
7 changes: 6 additions & 1 deletion server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![crates.io](https://img.shields.io/crates/v/unleash-edge?label=latest)](https://crates.io/crates/unleash-edge)
[![Documentation](https://docs.rs/unleash-edge/badge.svg?version=latest)](https://docs.rs/unleash-edge/latest)
![MIT licensed](https://img.shields.io/crates/l/unleash-edge.svg)
[![Dependency Status](https://deps.rs/crate/unleash-edge/14.0.0/status.svg)](https://deps.rs/crate/unleash-edge/14.0.0)
[![Dependency Status](https://deps.rs/crate/unleash-edge/16.0.0/status.svg)](https://deps.rs/crate/unleash-edge/16.0.0)
[![CI](https://github.com/Unleash/unleash-edge/actions/workflows/test-with-coverage.yaml/badge.svg)](https://github.com/Unleash/unleash-edge/actions/workflows/test-with-coverage.yaml)
[![Coverage Status](https://coveralls.io/repos/github/Unleash/unleash-edge/badge.svg?branch=main)](https://coveralls.io/github/Unleash/unleash-edge?branch=main)
![downloads](https://img.shields.io/crates/d/unleash-edge.svg)
Expand Down Expand Up @@ -61,6 +61,11 @@ Options:
App name. Used for metrics reporting [env: APP_NAME=] [default: unleash-edge]
-h, --help
Print help
-l, --log-format <LOG_FORMAT>
Which log format should Edge use
[env: LOG_FORMAT=]
[default: `plain`]
Possible values: `plain`, `json`, `pretty`
```
### Built-in Health check
Expand Down

0 comments on commit fbd72a8

Please sign in to comment.