-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
99 lines (80 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
name = "paradox-server"
version = "0.1.0"
authors = ["Xiphoseer <[email protected]>"]
edition = "2018"
[features]
sqlite-to-graphql-schema = ["argh"]
[[example]]
name = "sqlite-to-graphql-schema"
required-features = ["sqlite-to-graphql-schema"]
[dependencies.argh]
version = "0.1.9"
optional = true
[dependencies.assembly-core]
version = "0.3.1"
#[dependencies.assembly-maps]
#git = "https://github.com/LUDevNet/Assembly.git"
#rev = "db25c0f397d7bd0f05354134eb16ae685a7505a4"
[dependencies.assembly-pack]
git = "https://github.com/LUDevNet/Assembly.git"
rev = "9fb8479b8888729216b85cef2fd499ed7ed1f92a"
features = ["pki"]
[dependencies.assembly-fdb]
version = "0.1.0"
default-features = false
features = ["serde"]
[dependencies.assembly-xml]
git = "https://github.com/LUDevNet/Assembly.git"
rev = "9fb8479b8888729216b85cef2fd499ed7ed1f92a"
[dependencies.paradox-typed-db]
git = "https://github.com/LUDevNet/paradox-typed-db.git"
rev = "61494a7eac8d9c267d29fb6aa319b71dac396f6f"
[dependencies]
base64 = "0.20.0"
futures-util = "0.3.25"
pretty_env_logger = "0.4.0"
http = "0.2.8"
http-body = "0.4.5"
mapr = "0.8.0"
notify = "5.0.0"
openapiv3 = "1.0.2"
percent-encoding = "2.2.0"
pin-project = "1.0.12"
regex = "1.7.0"
serde_json = "1.0.91"
serde_yaml = "0.9.16"
toml = "0.5.10"
tower-service = "0.3.2"
tracing = "0.1.37"
form_urlencoded = "1.1.0"
latin1str = "0.1.3"
once_cell = "1.16.0"
graphql-parser = "0.4"
[dependencies.clap]
version = "4.0.29"
features = ["derive"]
[dependencies.hyper]
version = "0.14.23"
features = ["server", "runtime", "http1", "http2"]
[dependencies.tower]
version = "0.4.13"
features = ["make", "util"]
[dependencies.tower-http]
version = "0.3.5"
features = ["fs", "auth", "trace", "cors"]
[dependencies.color-eyre]
version = "0.6.2"
default-features = false
[dependencies.tokio]
version = "1.23.0"
features = ["rt-multi-thread", "macros", "signal"]
[dependencies.rusqlite]
version = "0.26.3"
features = ["bundled"]
[dependencies.serde]
version = "1.0.151"
features = ["derive"]
[build-dependencies]
openapiv3 = "1.0.2"
serde_yaml = "0.9.16"