-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (28 loc) · 818 Bytes
/
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
[package]
name = "mongodb-base-service"
version = "0.5.1"
authors = ["bdbmammoth <[email protected]>"]
edition = "2018"
license = "MIT"
keywords = ["mongodb", "service", "starter"]
readme = "README.md"
description = """
A simple Rust service wrapper to simplify finds, updates, deletes
"""
repository = "https://github.com/briandeboer/mongodb-base-service"
[features]
default = []
graphql = ["juniper"]
test = []
[dependencies]
bson = "0.14.1"
chrono = { version = "0.4.15", features = ["serde"] }
lazy_static = "1.4.0"
log = "0.4.11"
mongodb-cursor-pagination = { version = "0.2.9", features = ["graphql"] }
mongodb = "0.9.2"
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "0.8.1", features = ["serde", "v4"] }
voca_rs = "1.11"
# optional
juniper = { version = "0.14.2", optional = true }