-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.12 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
[package]
name = "serde-firestore-value"
version = "0.12.2"
authors = ["bouzuya <m@bouzuya.net>"]
description = "A serde (de)serializer using Firestore Value as its data format"
edition = "2021"
exclude = [".github"]
keywords = ["firestore", "gcloud", "google", "serde", "serialization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bouzuya/serde-firestore-value"
[dependencies]
chrono = { version = "0.4", optional = true }
googleapis-tonic-google-firestore-v1 = { version = "0.9.0", default-features = false }
prost = "0.13"
prost-types = "0.13"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
time = { version = "0.3", optional = true }
[dev-dependencies]
anyhow = "1.0.79"
serde_json = "1.0.110"
[features]
default = ["vec-u8", "hash-map"]
btree-map = ["googleapis-tonic-google-firestore-v1/btree-map"]
bytes = ["googleapis-tonic-google-firestore-v1/bytes"]
chrono = ["dep:chrono"]
hash-map = ["googleapis-tonic-google-firestore-v1/hash-map"]
time = ["dep:time"]
vec-u8 = ["googleapis-tonic-google-firestore-v1/vec-u8"]
[lib]
doctest = false
[lints.rust]
missing_docs = "deny"
[lints.rustdoc]
all = "deny"