[package] name = "eternaltwin_link_store" version = "0.16.0" authors = ["Charles Samborski "] description = "Link store implementation" documentation = "https://gitlab.com/eternaltwin/eternaltwin" homepage = "https://gitlab.com/eternaltwin/eternaltwin" repository = "https://gitlab.com/eternaltwin/eternaltwin" readme = "./README.md" keywords = ["etwin"] license.workspace = true edition.workspace = true rust-version.workspace = true [dependencies] async-trait = "0.1.66" eternaltwin_core = { version = "0.16.0", path = "../core", features = ["sqlx-postgres"] } opentelemetry = { workspace = true, features = ["trace"] } regex = "1.7.1" sqlx = { workspace = true, default-features = false, features = ["macros", "chrono", "postgres", "runtime-tokio-rustls", "uuid"], optional = true } [dev-dependencies] eternaltwin_config = { version = "0.16.0", path = "../config" } eternaltwin_db_schema = { version = "0.16.0", path = "../db_schema" } eternaltwin_dinoparc_store = { version = "0.16.0", path = "../dinoparc_store" } eternaltwin_hammerfest_store = { version = "0.16.0", path = "../hammerfest_store" } eternaltwin_user_store = { version = "0.16.0", path = "../user_store" } serial_test = "1.0.0" tokio = { version = "1.26.0", features = ["macros", "rt"] } [features] mem = [] pg = ["dep:sqlx", "eternaltwin_core/sqlx-postgres"]