Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Release 0.5.0 #37

Merged
merged 1 commit into from
Oct 29, 2024
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ This changelog documents the changes between release versions.

Changes to be included in the next upcoming release

## [0.5.0] - 2024-10-29

- add utilities to [implement PrintSchemaAndCapabilities](https://github.com/hasura/ndc-sdk-rs/pull/34). This splits the sdk into multiple crates to avoid bringing in openssl

## [0.4.0] - 2024-08-30
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

35 changes: 27 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
[workspace]
resolver = "2"

package.version = "0.4.0"
package.version = "0.5.0"
package.edition = "2021"
package.license = "Apache-2.0"

members = [
"crates/*",
]
members = ["crates/*"]

[workspace.dependencies]
ndc-sdk-core = { path = "../sdk-core" }
Expand All @@ -24,7 +22,13 @@ http = "0.2"
mime = "0.3"
opentelemetry = "0.22"
opentelemetry-http = "0.11"
opentelemetry-otlp = { version = "0.15", features = ["reqwest-client", "gzip-tonic", "tls", "tls-roots", "http-proto"] }
opentelemetry-otlp = { version = "0.15", features = [
"reqwest-client",
"gzip-tonic",
"tls",
"tls-roots",
"http-proto",
] }
opentelemetry-semantic-conventions = "0.14"
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
opentelemetry-zipkin = "0.20"
Expand All @@ -33,12 +37,27 @@ reqwest = "0.11"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
thiserror = "1"
tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread", "signal"] }
tokio = { version = "1", features = [
"fs",
"macros",
"rt-multi-thread",
"signal",
] }
tokio-test = "0.4"
tower-http = { version = "0.4", features = ["cors", "limit", "trace", "validate-request"] }
tower-http = { version = "0.4", features = [
"cors",
"limit",
"trace",
"validate-request",
] }
tracing = "0.1"
tracing-opentelemetry = "0.23"
tracing-subscriber = { version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt", "json"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"ansi",
"env-filter",
"fmt",
"json",
] }
url = "2"


Expand Down
Loading