Skip to content

Commit

Permalink
bump ndc-spec dependency to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BenoitRanque committed Mar 31, 2024
1 parent c65c739 commit 61bc6d5
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 101 deletions.
112 changes: 21 additions & 91 deletions Cargo.lock

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

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

package.version = "0.1.0"
package.version = "0.1.1"
package.edition = "2021"
package.license = "Apache-2.0"

members = [
"rust-connector-sdk",
]
members = ["rust-connector-sdk"]

[profile.release]
debug = true
Expand Down
25 changes: 20 additions & 5 deletions rust-connector-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ ndc-test = ["dep:ndc-test"]
default = ["ndc-test"]

[dependencies]
ndc-client = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.0" }
ndc-test = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.0", optional = true }
ndc-client = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.1" }
ndc-test = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.1", optional = true }

async-trait = "^0.1.74"
axum = "^0.6.20"
Expand All @@ -29,7 +29,13 @@ http = "^0.2"
mime = "0.3.17"
opentelemetry = { version = "^0.22", default-features = false }
opentelemetry-http = "0.11.0"
opentelemetry-otlp = { version = "^0.15.0", features = ["reqwest-client", "gzip-tonic", "tls", "tls-roots", "http-proto"] }
opentelemetry-otlp = { version = "^0.15.0", features = [
"reqwest-client",
"gzip-tonic",
"tls",
"tls-roots",
"http-proto",
] }
opentelemetry-semantic-conventions = "^0.14.0"
opentelemetry_sdk = { version = "^0.22.1", features = ["rt-tokio"] }
prometheus = "^0.13.3"
Expand All @@ -38,10 +44,19 @@ serde = { version = "^1.0.192", features = ["derive"] }
serde_json = { version = "^1.0.108", features = ["raw_value"] }
thiserror = "^1.0"
tokio = { version = "^1.34.0", features = ["fs", "signal"] }
tower-http = { version = "^0.4.4", features = ["cors", "trace", "validate-request"] }
tower-http = { version = "^0.4.4", features = [
"cors",
"trace",
"validate-request",
] }
tracing = "^0.1.40"
tracing-opentelemetry = "^0.23.0"
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.4.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rust-connector-sdk/src/connector/example.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl Connector for Example {

async fn get_capabilities() -> JsonResponse<models::CapabilitiesResponse> {
models::CapabilitiesResponse {
version: "0.1.0".into(),
version: "0.1.1".into(),
capabilities: models::Capabilities {
relationships: None,
query: models::QueryCapabilities {
Expand Down

0 comments on commit 61bc6d5

Please sign in to comment.