-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 778 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 778 Bytes
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
[workspace]
members = [
"mdsn",
"taos",
"taos-error",
"taos-log",
"taos-macros",
"taos-optin",
"taos-query",
"taos-ws",
"taos-ws-sys",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.12.4"
authors = ["Linhe Huo <linhe.huo@gmail.com>"]
categories = ["database", "api-bindings", "asynchronous"]
description = "Driver for TDengine - a timeseries database and analysis platform"
documentation = "https://docs.rs/taos"
homepage = "https://tdengine.com"
keywords = ["timeseries", "database", "tdengine", "taosdata", "connection"]
license = "MIT OR Apache-2.0"
readme = "./README.md"
repository = "https://github.com/taosdata/taos-connector-rust.git"
rust-version = "1.90.0"
[profile.release]
lto = true
panic = "abort"
overflow-checks = false