[package]
edition = "2024"
name = "tank"
version = "0.26.0"
authors = ["barsdeveloper <barsdeveloper@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tank (Table Abstraction and Navigation Kit): the Rust data layer. Simple and flexible ORM that allows to manage in a unified way data from different sources."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/TankHQ/tank"
[features]
chrono = ["tank-core/chrono"]
default = []
[lib]
name = "tank"
path = "src/lib.rs"
[[test]]
name = "column"
path = "tests/column.rs"
[[test]]
name = "customer"
path = "tests/customer.rs"
[[test]]
name = "employee"
path = "tests/employee.rs"
[[test]]
name = "entity_empty"
path = "tests/entity_empty.rs"
[[test]]
name = "entity_odd"
path = "tests/entity_odd.rs"
[[test]]
name = "entity_simple"
path = "tests/entity_simple.rs"
[[test]]
name = "expression"
path = "tests/expression.rs"
[[test]]
name = "interval"
path = "tests/interval.rs"
[[test]]
name = "join"
path = "tests/join.rs"
[[test]]
name = "product"
path = "tests/product.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "sql"
path = "tests/sql.rs"
[[test]]
name = "trade"
path = "tests/trade.rs"
[[test]]
name = "value"
path = "tests/value.rs"
[[test]]
name = "visitor"
path = "tests/visitor.rs"
[dependencies.tank-core]
version = "0"
default-features = false
[dependencies.tank-macros]
version = "0"
[dev-dependencies.indoc]
version = "2"
[dev-dependencies.rust_decimal]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.time]
version = "0"
features = [
"macros",
"parsing",
]
[dev-dependencies.uuid]
version = "1"