data-modelling-sdk 1.2.0

Shared SDK for model operations across platforms (API, WASM, Native)
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.datafusion]
default-features = false
features = []
optional = true
version = "45"

[dependencies.git2]
optional = true
version = "0.19"

[dependencies.image]
optional = true
version = "0.24"

[dependencies.imageproc]
optional = true
version = "0.23"

[dependencies.petgraph]
version = "0.6"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
default-features = false
features = ["json", "native-tls", "cookies"]
optional = true
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.sqlparser]
version = "0.53"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["fs"]
optional = true
version = "1"

[dependencies.tracing]
version = "0.1"

[dependencies.urlencoding]
optional = true
version = "2.1"

[dependencies.uuid]
features = ["v4", "v5", "serde"]
version = "1.0"

[dependencies.yaml-rust]
version = "0.4"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

[features]
api-backend = ["reqwest", "urlencoding"]
databricks-dialect = ["datafusion"]
default = ["api-backend"]
git = ["git2"]
native-fs = ["tokio"]
png-export = ["image", "imageproc"]
wasm = ["wasm-bindgen", "wasm-bindgen-futures", "web-sys", "js-sys"]

[lib]
crate-type = ["rlib", "cdylib"]
name = "data_modelling_sdk"
path = "src/lib.rs"

[package]
authors = ["Mark Olliver"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Shared SDK for model operations across platforms (API, WASM, Native)"
edition = "2024"
license = "MIT"
name = "data-modelling-sdk"
readme = "README.md"
repository = "https://github.com/pixie79/data-modelling-sdk"
version = "1.2.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
features = ["js"]
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
optional = true
version = "0.3"

[target.'cfg(target_arch = "wasm32")'.dependencies.petgraph]
version = "0.6"

[target.'cfg(target_arch = "wasm32")'.dependencies.uuid]
features = ["v4", "v5", "serde", "js"]
version = "1.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
optional = true
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
optional = true
version = "0.4"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
features = ["IdbDatabase", "IdbFactory", "IdbObjectStore", "IdbRequest", "IdbTransaction", "IdbTransactionMode", "IdbOpenDbRequest", "IdbVersionChangeEvent", "Window", "Storage", "console"]
optional = true
version = "0.3"

[[test]]
name = "auth_tests"
path = "tests/auth_tests.rs"

[[test]]
name = "export_tests"
path = "tests/export_tests.rs"

[[test]]
name = "git_tests"
path = "tests/git_tests.rs"

[[test]]
name = "import_tests"
path = "tests/import_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "model_tests"
path = "tests/model_tests.rs"

[[test]]
name = "models_tests"
path = "tests/models_tests.rs"

[[test]]
name = "nested_structures_tests"
path = "tests/nested_structures_tests.rs"

[[test]]
name = "odcs_comprehensive_tests"
path = "tests/odcs_comprehensive_tests.rs"

[[test]]
name = "storage_tests"
path = "tests/storage_tests.rs"

[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"

[[test]]
name = "workspace_tests"
path = "tests/workspace_tests.rs"