24 lines
724 B
TOML
24 lines
724 B
TOML
[package]
|
|
name = "connectors"
|
|
version = "0.1.0"
|
|
authors = ["JesusPerez <jpl@jesusperez.pro>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.40"
|
|
async-trait = "0.1.51"
|
|
|
|
envmnt = "0.9.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_derive = "1.0"
|
|
tokio = { version = "1.5.0", features = ["full"] }
|
|
|
|
redis = { version = "0.21.2", features = [ "tokio-comp", "cluster"] }
|
|
slab = "0.4.4"
|
|
sqlx = {version = "0.5.7", default-features = false, features = ["macros","runtime-tokio-rustls","sqlite", "mysql", "postgres", "decimal", "chrono"]}
|
|
sthash = "0.2.11"
|
|
tempfile = "3.2.0"
|
|
thiserror = "1.0.29"
|
|
# tikv-client = { git = "https://github.com/tikv/client-rust.git" }
|
|
|
|
datastores = { version = "0.1.0", path = "../defs" } |