mysql_cdc 0.2.1

MySQL/MariaDB binlog change data capture (CDC) connector for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
/// Used by default in MariaDB and MySQL 5.7 Server and prior.
pub const MY_SQL_NATIVE_PASSWORD: &str = "mysql_native_password";

/// Used by default in MySQL Server 8.0.
pub const CACHING_SHA2_PASSWORD: &str = "caching_sha2_password";

pub enum AuthPlugin {
    MySqlNativePassword,
    CachingSha2Password,
}