-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (53 loc) · 1.97 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
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "spanner-rs"
version = "0.3.0"
edition = "2021"
description = "Cloud Spanner Rust Client"
license = "MIT"
authors = ["Philippe Laflamme <[email protected]>"]
repository = "https://github.com/plaflamme/spanner-rs/"
keywords = ["database", "spanner", "gcp", "sql", "async"]
categories = ["database"]
[features]
default = ["json", "numeric", "temporal"]
json = ["serde_json"]
numeric = ["bigdecimal"]
temporal = ["chrono"]
[dependencies]
async-trait = "0.1"
base64 = "0.13"
bb8 = "0.8"
bigdecimal = { version = "0.3", optional = true }
chrono = { version = "0.4", optional = true }
derive_builder = "0.11"
dyn-clone = "1.0"
gcp_auth = "0.7"
google-api-proto = { version = "1", features = ["google-spanner-v1"] }
http = "0.2"
prost = "0.11"
prost-types = "0.11"
serde_json = { version = "1.0", optional = true }
thiserror = "1.0"
tokio = { version = "1.21", features = ["rt-multi-thread", "macros", "net"] }
tonic = { version = "0.8", features = ["tls", "tls-roots"] }
tower = { version = "0.4", features = ["filter"] }
[dev-dependencies]
async-trait = "0.1"
ctor = "0.1"
dotenv = "0.15"
env_logger = "0.9.1"
testcontainers = "0.14"
reqwest = "0.11"
[package.metadata.release]
sign-commit = true
sign-tag = true
tag-message = "chore: release {{version}}"
pre-release-commit-message = "chore: release {{version}}"
post-release-commit-message = "chore: prepare {{next_version}}"
pre-release-replacements = [
{ file = "CHANGELOG.md", search = "Unreleased", replace = "{{version}}" },
{ file = "CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
{ file = "CHANGELOG.md", search = "ReleaseDate", replace = "{{date}}" },
{ file = "CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly = 1 },
{ file = "CHANGELOG.md", search = "<!-- next-url -->", replace = "<!-- next-url -->\n[Unreleased]: https://github.com/plaflamme/spanner-rs/compare/{{tag_name}}...HEAD", exactly = 1 },
]