-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 1.11 KB
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
[package]
name = "taos-ws-py"
version = "0.6.6"
edition = "2021"
publish = false
license = "MIT"
[lib]
name = "taosws"
crate-type = ["cdylib"]
[dependencies]
anyhow = "1"
chrono = "0.4"
chrono-tz = "0.10.4"
iana-time-zone = "0.1.63"
log = "0.4"
pretty_env_logger = "0.5"
serde_json = "1"
shadow-rs = { version = "0.33.0", default-features = false }
[build-dependencies]
shadow-rs = { version = "0.33.0", default-features = false }
[dependencies.pyo3]
version = "0.17.3"
features = ["extension-module", "anyhow", "chrono", "abi3-py37"]
[target.'cfg(windows)'.dependencies]
taos = { git = "https://github.com/taosdata/taos-connector-rust.git", branch = "main", default-features = false, version = "0.12.3", features = [
"optin",
"ws-rustls",
"ws-rustls-aws-lc-crypto-provider",
] }
[target.'cfg(unix)'.dependencies]
taos = { git = "https://github.com/taosdata/taos-connector-rust.git", branch = "main", default-features = false, version = "0.12.3", features = [
"optin",
"ws-rustls",
"ws-rustls-ring-crypto-provider",
] }
[patch.crates-io]
ring = { git = "https://github.com/taosdata/ring.git", branch = "fix/loongarch" }