forked from JonasKruckenberg/tauri-plugin-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.49 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
[package]
name = "mizuki"
version = "1.0.0"
authors = [ "Jonas Kruckenberg", "tonymushah <tonymushahDev06@yahoo.com>" ]
description = "A toolkit for building Tauri Plugins 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/tonymushah/mizuki"
categories = [ "gui", "web-programming" ]
keywords = [ "tauri-plugin", "graphql" ]
[dependencies]
serde = { workspace = true, features = [ "derive" ] }
serde_json.workspace = true
tauri.workspace = true
async-graphql.workspace = true
[features]
log = [ "async-graphql/log" ]
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" ]
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" ]
[workspace.dependencies]
serde = { version = "1" }
serde_json = "1"
tauri = "2"
async-graphql = "7"