mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
783aec942d
This keeps versions in one place so we can more easily ensure we upgrade crates together. V3_GIT_ORIGIN_REV_ID: 6a929bb6196c19a1f66a768585b669127035e9be
59 lines
1.4 KiB
TOML
59 lines
1.4 KiB
TOML
[package]
|
|
name = "lang-graphql"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "lexer"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "parser"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "validation"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "schema_serde"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
recursion_limit_macro = { path = "../utils/recursion_limit_macro" }
|
|
|
|
axum = { workspace = true }
|
|
http = { workspace = true }
|
|
indexmap = { workspace = true, features = ["serde"] }
|
|
lexical-core = { workspace = true }
|
|
nonempty = { workspace = true, features = ["serialize"] }
|
|
schemars = { workspace = true, features = ["smol_str"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
smol_str = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
apollo-parser = { workspace = true }
|
|
async-graphql-parser = { workspace = true }
|
|
bincode = { workspace = true }
|
|
bson = { workspace = true }
|
|
criterion = { workspace = true, features = ["html_reports"] }
|
|
diffy = { workspace = true }
|
|
expect-test = { workspace = true }
|
|
graphql-parser = { workspace = true }
|
|
human_bytes = { workspace = true }
|
|
postcard = { workspace = true, features = ["use-std"] }
|
|
pretty_assertions = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|