-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (38 loc) · 1.33 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
[package]
name = "ksqldb"
version = "0.1.0-alpha.6"
authors = ["Naaman <[email protected]>"]
description = "A thin wrapper around the KSQL DB REST API to make it more ergonomic to work with."
edition = "2018"
readme = "readme.md"
license = "Apache-2.0"
repository = "https://github.com/naamancurtis/ksql-db-rs"
categories = ["api-bindings", "asynchronous", "database"]
include = [
"**/*.rs",
"Cargo.toml",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["http2", "native_tls"]
http2 = ["pin-project-lite"]
http1 = ["regex", "pin-project-lite", "lazy_static"]
trace = ["tracing", "tracing-futures"]
native_tls = ["reqwest/native-tls"]
rustls_tls = ["reqwest/rustls-tls"]
[dependencies]
serde = { version = "^1.0", features = ["derive"] }
chrono = "^0.4"
thiserror = "^1.0"
serde_json = "^1.0"
bytes = "^1.0"
futures-core = "^0.3"
futures-util = "^0.3"
reqwest = { version = "0.12", features = ["json", "stream"], default-features = false }
pin-project-lite = { version = "0.2.4", optional = true }
regex = { version = "1.4.3", optional = true }
lazy_static = { version = "^1.4", optional = true }
tracing = { version = "^0.1", optional = true }
tracing-futures = { version = "^0.2", optional = true }
[dev-dependencies]
tokio = { version = "1.2.0", features = ["full"] }