[package] name = "opengauss-types" version = "0.1.0" authors = ["He Guofeng "] edition = "2018" license = "MIT/Apache-2.0" description = "Conversions between Rust and openGauss values" repository = "https://gitee.com/opengauss/openGauss-connector-rust" readme = "../README.md" keywords = ["database", "og", "openGauss", "sql"] categories = ["database"] [features] derive = ["opengauss-derive"] array-impls = ["array-init"] with-bit-vec-0_6 = ["bit-vec-06"] with-chrono-0_4 = ["chrono-04"] with-eui48-0_4 = ["eui48-04"] with-eui48-1 = ["eui48-1"] with-geo-types-0_6 = ["geo-types-06"] with-geo-types-0_7 = ["geo-types-0_7"] with-serde_json-1 = ["serde-1", "serde_json-1"] with-uuid-0_8 = ["uuid-08"] with-time-0_2 = ["time-02"] [dependencies] bytes = "1.0" fallible-iterator = "0.2" opengauss-protocol = { version = "0.1.0", path = "../opengauss-protocol" } opengauss-derive = { version = "0.1.0", optional = true, path = "../opengauss-derive" } array-init = { version = "2", optional = true } bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true } chrono-04 = { version = "0.4.16", package = "chrono", default-features = false, features = ["clock"], optional = true } eui48-04 = { version = "0.4", package = "eui48", optional = true } eui48-1 = { version = "1.0", package = "eui48", optional = true } geo-types-06 = { version = "0.6", package = "geo-types", optional = true } geo-types-0_7 = { version = "0.7", package = "geo-types", optional = true } serde-1 = { version = "1.0", package = "serde", optional = true } serde_json-1 = { version = "1.0", package = "serde_json", optional = true } uuid-08 = { version = "0.8", package = "uuid", optional = true } time-02 = { version = "0.2", package = "time", optional = true }