forked from appsignal/mongo-rust-driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (29 loc) · 915 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
34
[package]
name = "mongo_driver"
version = "0.12.1"
authors = ["Thijs Cadier <[email protected]>"]
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"
autotests = false
[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 = "^1.1"
serde = "1.0"
serde_derive = "1.0"
[dependencies.mongoc-sys]
path = "mongoc-sys"
version = "1.8.2-1"
[dev-dependencies]
chrono = "^0.4"