forked from abdolence/firestore-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (40 loc) · 1.39 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
[package]
name = "firestore"
version = "0.10.1"
authors = ["Abdulla Abdurakhmanov <me@abdolence.dev>"]
edition = "2021"
license = "Apache-2.0"
description = "Library provides a simple API for Google Firestore for create/update/query/stream/listen data and Serde serializer"
homepage = "https://github.com/abdolence/firestore-rs"
repository = "https://github.com/abdolence/firestore-rs"
documentation = "https://docs.rs/firestore"
keywords = ["firestore", "google", "client"]
categories = ["api-bindings"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "firestore"
path = "src/lib.rs"
[dependencies]
tracing = "0.1"
gcloud-sdk = { version = "0.18", features = ["google-firestore-v1"] }
tonic = { version = "0.8", features = ["tls"] }
hyper = { version ="0.14" }
convert_case = "0.6"
rvstruct = "0.3"
rsb_derive = "0.5"
serde = { version = "1.0", features = ["derive"] }
prost-types = "0.11"
tokio = { version = "1.20", features = ["full"] }
tokio-stream = "0.1"
futures = "0.3"
futures-util = "0.3"
lazy_static = "1.4"
chrono = { version = "0.4", features = ["serde"] }
async-trait = "0.1"
hex = "0.4"
[dev-dependencies]
cargo-husky = { version = "1.5", default-features = false, features = ["run-for-all", "prepush-hook", "run-cargo-fmt"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }