-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.38 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
44
45
46
47
48
49
50
51
[workspace]
members = [
".",
"./example",
]
[package]
edition = "2021"
name = "mysql-binlog-connector-rust"
version = "0.3.4"
categories = ["database"]
description = "mysql binlog connector"
documentation = "https://docs.rs/mysql-binlog-connector-rust"
keywords = ["mysql", "binlog", "connector"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/apecloud/mysql-binlog-connector-rust"
homepage = "https://github.com/apecloud/mysql-binlog-connector-rust"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
rustls = ["dep:futures", "dep:futures-rustls", "dep:rustls"]
openssl-tls = ["dep:openssl", "dep:async-std-openssl"]
[dependencies]
byteorder = "1.4.3"
num_enum = "0.7.3"
serde = {version = "1", features = ["derive"]}
serde_json = "1.0.87"
serial_test = "3.1.1"
sha1 = "0.10.0"
sha2 = "0.10.6"
zstd = "0.13.2"
async-std = "1.12.0"
dotenv = "0.15.0"
url = "2.3.1"
percent-encoding = "2.3.1"
async-recursion = "1.0.2"
lazy_static = "1.4.0"
thiserror = "1.0.44"
mysql_common = "0.32.4"
base64 = "0.22.1"
log = "0.4.26"
socket2 = "0.6.1"
futures = { version = "0.3", optional = true }
futures-rustls = { version = "0.26", optional = true }
rustls = { version = "0.23", optional = true }
openssl = { version = "0.10", optional = true }
async-std-openssl = { version = "0.6", optional = true }