-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathCargo.toml
28 lines (25 loc) · 847 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
[package]
name = "gcloud-spanner-derive"
version = "0.2.1"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/macro/spanner"
keywords = ["gcp","spanner","googleapis","google-cloud-rust"]
license = "MIT"
readme = "README.md"
description = "Google Cloud Platform spanner client library macro derive."
documentation = "https://docs.rs/gcloud-spanner/latest/gcloud_spanner_derive/"
[lib]
doctest = false
proc-macro = true
[dependencies]
quote = "1.0"
syn = { version="1.0", features=["full"] }
convert_case = "0.6"
[dev-dependencies]
google-cloud-spanner = { package = "gcloud-spanner", path = "../spanner"}
time = { version = "0.3", features = ["serde"] }
tokio = { version="1.32", features=["rt-multi-thread"] }
serial_test = "3.1"
serde = "1.0"
serde_json = "1.0"