-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (65 loc) · 2.6 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (65 loc) · 2.6 KB
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
64
65
66
67
[workspace]
members = [
"crates/graphql-orm-ai",
"crates/graphql-orm-ai-tool-profiles",
"crates/graphql-orm-backup",
"crates/graphql-orm",
"crates/graphql-orm-macros",
"crates/graphql-orm-operation-catalog",
"crates/graphql-orm-router",
"crates/graphql-orm-router-protocol",
"crates/graphql-orm-storage",
]
default-members = [
"crates/graphql-orm",
"crates/graphql-orm-macros",
]
exclude = [
"crates/graphql-orm-macros/fixtures/full-stack",
"crates/graphql-orm-macros/fixtures/postgres-smoke",
"crates/graphql-orm-macros/fixtures/relationship-capability",
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/Dastari/graphql-orm"
[workspace.dependencies]
agql-auth = { git = "https://github.com/Dastari/agql-auth.git", rev = "1d2e9fe2e1576105212a7b340a11abf8cad0382d", version = "0.19.0" }
arc-swap = "1.7"
async-graphql = { version = "7", features = ["dataloader", "uuid"] }
async-graphql-parser = "7"
base64 = "0.22"
convert_case = "0.7"
cynic-parser = { version = "=0.11.2", features = ["pretty"] }
futures = "0.3"
getrandom = "0.3"
graphql-composition = "=0.12.2"
graphql-orm = { path = "crates/graphql-orm", version = "0.30.0", default-features = false }
graphql-orm-ai-tool-profiles = { path = "crates/graphql-orm-ai-tool-profiles", version = "0.11.0" }
graphql-orm-backup = { path = "crates/graphql-orm-backup", version = "0.7.2", default-features = false }
graphql-orm-operation-catalog = { path = "crates/graphql-orm-operation-catalog", version = "0.4.0" }
graphql-orm-router-protocol = { path = "crates/graphql-orm-router-protocol", version = "0.2.1" }
graphql-orm-storage = { path = "crates/graphql-orm-storage", version = "0.6.2", default-features = false }
hive-router = "=0.0.87"
hive-router-config = "=0.1.10"
jsonwebtoken = { version = "=11.0.0", features = ["rust_crypto"] }
proc-macro2 = "1"
quote = "1"
reqwest = { version = "0.13", default-features = false, features = ["http2", "rustls", "stream"] }
rust_decimal = { version = "1", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
sha1 = "0.10"
signal-hook = "0.4"
sqlx = { version = "0.8", default-features = false }
syn = { version = "2", features = ["full", "parsing", "extra-traits"] }
tiberius = { version = "0.12.3", default-features = false, features = ["tds73", "rustls", "tokio", "tokio-util", "chrono", "rust_decimal"] }
thiserror = "2"
tokio = { version = "1" }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7", features = ["compat"] }
tracing = "0.1"
uuid = { version = "1", features = ["v4"] }
url = "2"