Skip to content

Commit

Permalink
Merge pull request #40 from hasura/v2-compat
Browse files Browse the repository at this point in the history
add v2 compatibility layer
  • Loading branch information
BenoitRanque authored Sep 18, 2023
2 parents e16b85a + 7603f34 commit 654f791
Show file tree
Hide file tree
Showing 4 changed files with 1,441 additions and 55 deletions.
171 changes: 157 additions & 14 deletions Cargo.lock

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

24 changes: 19 additions & 5 deletions rust-connector-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,35 @@ axum-macros = "^0.3.7"
clap = { version = "^4.3.9", features = ["derive", "env"] }
ndc-client = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.5" }
ndc-test = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.5" }
opentelemetry = { version = "^0.20", features = [ "rt-tokio", "trace" ], default-features = false }
opentelemetry = { version = "^0.20", features = [
"rt-tokio",
"trace",
], default-features = false }
opentelemetry_api = "^0.20.0"
opentelemetry_sdk = "^0.20.0"
opentelemetry-otlp = { version = "^0.13.0", features = [ "reqwest-client" ] }
opentelemetry-otlp = { version = "^0.13.0", features = ["reqwest-client"] }
opentelemetry-semantic-conventions = "^0.12.0"
prometheus = "^0.13.3"
reqwest = "^0.11.20"
schemars = { version = "^0.8.12", features = ["smol_str"] }
serde = { version = "^1.0.164", features = ["derive"] }
serde_json = { version = "^1.0.97", features = ["raw_value"] }
thiserror = "^1.0"
tokio = { version = "^1.28.2", features = ["fs", "signal"] }
tower-http = { version = "^0.4.1", features = ["cors", "trace", "validate-request"] }
tokio = { version = "^1.28.2", features = ["fs", "signal"] }
tower-http = { version = "^0.4.1", features = [
"cors",
"trace",
"validate-request",
] }
tracing = "^0.1.37"
tracing-opentelemetry = "^0.20.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"
uuid = "^1.3.4"
gdc_rust_types = { git = "https://github.com/hasura/gdc_rust_types", rev = "bc57c40" }
indexmap = "^1"
Loading

0 comments on commit 654f791

Please sign in to comment.