forked from appsignal/mongo-rust-driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (28 loc) · 894 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
32
33
[package]
name = "mongo_driver"
version = "0.12.2"
authors = ["Thijs Cadier <thijs@appsignal.com>"]
description = "Mongo Rust driver built on top of the Mongo C driver"
readme = "README.md"
documentation = "https://docs.rs/mongo_driver/"
repository = "https://github.com/thijsc/mongo-rust-driver"
keywords = ["mongodb", "database"]
categories = ["database", "api-bindings"]
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "thijsc/mongo-rust-driver" }
is-it-maintained-issue-resolution = { repository = "thijsc/mongo-rust-driver" }
is-it-maintained-open-issues = { repository = "thijsc/mongo-rust-driver" }
[[test]]
name = "tests"
[dependencies]
libc = "^0.2"
log = "^0.4"
bson = "^0.14"
serde = "1.0"
serde_derive = "1.0"
[dependencies.mongoc-sys]
path = "mongoc-sys"
version = "1.8.2-0"
[dev-dependencies]
chrono = "^0.4"