-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 2.26 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (55 loc) · 2.26 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
[workspace]
members = [".", "cli", "generator", "macros"]
[package]
name = "seaography"
version = "2.0.0-rc.9"
edition = "2021"
rust-version = "1.70"
authors = [
"Panagiotis Karatakis <panagiotiskaratakis@gmail.com>",
"Chris Tsang <chris.2y3@outlook.com>",
]
description = "🧭 A GraphQL framework for SeaORM"
license = "MIT OR Apache-2.0"
homepage = "https://www.sea-ql.org/Seaography"
documentation = "https://docs.rs/seaography"
repository = "https://github.com/SeaQL/seaography"
keywords = ["async", "graphql", "mysql", "postgres", "sqlite"]
categories = ["database"]
[package.metadata.docs.rs]
features = ["default"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
async-graphql = { version = "~7.0.17", default-features = false, features = ["dataloader", "dynamic-schema"] }
sea-orm = { version = "~2.0.0-rc.40", default-features = false, features = ["seaography", "with-json"] }
seaography-macros = { version = "~2.0.0-rc.9", path = "macros", optional = true }
itertools = { version = "0.12.0" }
heck = { version = "0.4.1" }
thiserror = { version = "1.0.44" }
fnv = { version = "1.0.7" }
lazy_static = { version = "1.5" }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0" }
pluralizer = { version = "0.5", optional = true }
time = { version = "0.3", features = ["formatting"], optional = true }
[features]
default = ["field-camel-case", "schema-meta"]
macros = ["seaography-macros"]
schema-meta = ["macros", "serde/derive", "with-postgres-array"]
rbac = ["sea-orm/rbac"]
with-json = ["sea-orm/with-json"]
with-chrono = ["sea-orm/with-chrono", "async-graphql/chrono"]
with-time = ["sea-orm/with-time", "async-graphql/time", "time"]
with-uuid = ["sea-orm/with-uuid", "async-graphql/uuid"]
with-decimal = ["sea-orm/with-rust_decimal", "async-graphql/decimal"]
with-bigdecimal = ["sea-orm/with-bigdecimal", "async-graphql/bigdecimal"]
with-postgres-array = ["sea-orm/postgres-array"]
# with-ipnetwork = ["sea-orm/with-ipnetwork"]
# with-mac_address = ["sea-orm/with-mac_address"]
graphql-playground = ["async-graphql/playground"]
field-snake-case = []
field-camel-case = []
field-pluralize = ["pluralizer"]
strict-custom-types = ["seaography-macros/strict-custom-types"]
# [patch.crates-io]
# sea-orm = { git = "https://github.com/SeaQL/sea-orm", branch = "master" }