-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (47 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "graphql-query"
version = "1.0.0"
authors = ["Stellate <[email protected]>"]
repository = "https://github.com/StellateHQ/graphql-query"
description = "Stupendously fast and easy GraphQL Query Language handling."
keywords = ["GraphQL", "Lexer", "Parser", "WASM"]
license = "MIT"
edition = "2021"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["json"]
json = ["serde_json", "serde"]
[dependencies]
hashbrown = { version = "0.14.0", features = ["allocator-api2"] }
serde_json = { version = "^1.0.0", optional = true }
bumpalo = { version = "3.9", features = [
"collections",
"boxed",
"serde",
"allocator-api2",
] }
serde = { version = "^1.0.0", optional = true, features = ["derive"] }
logos = { version = "0.12.0", features = ["std"] }
lexical-core = { version = "0.8.3", features = [
"std",
"format",
"power-of-two",
"safe",
] }
[dev-dependencies]
apollo-parser = "^0.7.0"
async-graphql-parser = "^7.0.3"
graphql-parser = "^0.4.0"
serde = "^1.0.0"
serde_json = "^1.0.0"
indoc = "1.0.6"
bencher = "0.1.5"
[profile.release]
lto = true
panic = 'abort'
[profile.bench]
lto = true
[[bench]]
name = "parser"
harness = false