forked from JonasKruckenberg/tauri-plugin-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (57 loc) · 1.82 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
56
57
58
59
60
61
62
63
[package]
name = "mizuki"
version = "1.0.1"
authors = ["Jonas Kruckenberg", "tonymushah <[email protected]>"]
description = "A toolkit for building Tauri Plugins that enables type-safe IPC through GraphQL."
edition = "2021"
rust-version = "1.77.2"
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, default-features = false }
async-graphql.workspace = true
tokio-util = "0"
tokio = { version = "1", features = ["macros"] }
thiserror = "2"
[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 = [
"crates/*",
"examples/*/src-tauri",
"examples/preact-app/plugin/mizuki-test",
"examples/svelte-apollo-app/plugin/mizuki-test",
]
[workspace.dependencies]
serde = { version = "1" }
serde_json = "1"
tauri = { version = "2", default-features = false }
async-graphql = "7"
tauri-build = "2"
tauri-plugin = "2"
mizuki = { path = "./" }
mizuki-build = { path = "./crates/mizuki-build" }