-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
53 lines (48 loc) · 1.69 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
[package]
name = "tauri-plugin-graphql"
version = "2.1.0"
authors = [ "Jonas Kruckenberg" ]
description = "A plugin for Tauri that enables type-safe IPC through GraphQL."
edition = "2021"
rust-version = "1.59"
exclude = [ "/webview-dist", "/webview-src", "node_modules" ]
license = "MIT"
repository = "https://github.com/JonasKruckenberg/tauri-plugin-graphql"
categories = [ "gui", "web-programming" ]
keywords = [ "tauri-plugin", "graphql" ]
[package.metadata.docs.rs]
features = [ "graphiql" ]
[dependencies]
serde = { version = "^1.0.137", features = [ "derive" ] }
serde_json = "^1.0.81"
tauri = "^1.0.0"
async-graphql = "^5.0.0"
warp = { version = "^0.3.2", optional = true }
async-graphql-warp = { version = "^5.0.0", optional = true }
http = { version = "^0.2.8", optional = true }
[features]
graphiql = [ "dep:http", "dep:warp", "dep:async-graphql-warp" ]
log = [ "async-graphql/log" ]
tracing = [ "async-graphql/tracing" ]
opentelemetry = [ "async-graphql/opentelemetry" ]
bson = [ "async-graphql/bson" ]
chrono = [ "async-graphql/chrono" ]
chrono-tz = [ "async-graphql/chrono-tz" ]
url = [ "async-graphql/url" ]
uuid = [ "async-graphql/uuid" ]
uuid08 = [ "async-graphql/uuid08" ]
string_number = [ "async-graphql/string_number" ]
dataloader = [ "async-graphql/dataloader" ]
secrecy = [ "async-graphql/secrecy" ]
decimal = [ "async-graphql/decimal" ]
bigdecimal = [ "async-graphql/bigdecimal" ]
cbor = [ "async-graphql/cbor" ]
smol_str = [ "async-graphql/smol_str" ]
hashbrown = [ "async-graphql/hashbrown" ]
time = [ "async-graphql/time" ]
tokio-sync = [ "async-graphql/tokio-sync" ]
fast_chemail = [ "async-graphql/fast_chemail" ]
[dev-dependencies]
rand = "0.8.5"
[workspace]
members = [ "examples/*/src-tauri" ]