-
Notifications
You must be signed in to change notification settings - Fork 40
/
Cargo.toml
94 lines (75 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "schema_registry_converter"
version = "4.2.0"
authors = ["Gerard Klijs <[email protected]>"]
include = ["src/**/*", "Cargo.toml"]
description = "Encode/decode data from/to kafka using the Confluent Schema Registry"
homepage = "https://github.com/gklijs/schema_registry_converter"
repository = "https://github.com/gklijs/schema_registry_converter"
readme = "README.md"
keywords = ["kafka", "schema", "avro", "protobuf", "jsonschema"]
categories = ["encoding", "parsing"]
license = "MIT/Apache-2.0"
edition = "2021"
[workspace]
resolver = "2"
[features]
native_tls = ["reqwest/native-tls"]
rustls_tls = ["reqwest/rustls-tls"]
avro = ["apache-avro"]
blocking = ["reqwest/blocking"]
json = ["url", "valico"]
proto_decoder = ["bytes", "integer-encoding", "logos", "protofish"]
proto_raw = ["integer-encoding", "logos"]
easy = ["tokio"]
kafka_test = []
default = ["futures", "native_tls"]
[dependencies.byteorder]
version = "^1.5"
[dependencies.dashmap]
version = "^6.1"
[dependencies.reqwest]
version = "^0.12"
default-features = false
features = ["json"]
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.serde_json]
version = "^1.0"
[dependencies.apache-avro]
version = "^0.17"
optional = true
[dependencies.bytes]
version = "^1.0"
optional = true
[dependencies.futures]
version = "^0.3"
optional = true
[dependencies.integer-encoding]
version = "^4.0"
optional = true
[dependencies.logos]
version = "^0.15"
optional = true
[dependencies.protofish]
version = "^0.5"
optional = true
[dependencies.url]
version = "^2.5"
optional = true
[dependencies.tokio]
version = "^1.40"
features = ["macros"]
optional = true
[dependencies.valico]
version = "^4.0"
optional = true
[dev-dependencies]
mockito = "^1.5.0"
rdkafka = { version = "^0.37.0", features = ["cmake-build"] }
rand = "^0.8.5"
test_utils = { path = "test_utils" }
tokio = { version = "^1.40.0", features = ["macros"] }
[package.metadata.docs.rs]
all-features = true