2022-05-21 03:11:57 +00:00
|
|
|
[package]
|
|
|
|
|
name = "nativeexample"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
[dependencies]
|
2022-08-11 11:55:23 +00:00
|
|
|
anyhow = "1"
|
|
|
|
|
chrono = "0.4"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2024-09-21 09:04:30 +00:00
|
|
|
serde_json = "1.0"
|
2022-08-11 11:55:23 +00:00
|
|
|
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] }
|
2024-07-03 08:33:55 +00:00
|
|
|
log = "0.4"
|
|
|
|
|
pretty_env_logger = "0.5.0"
|
2022-08-11 11:55:23 +00:00
|
|
|
|
2024-08-03 11:19:26 +00:00
|
|
|
taos = "*"
|