[package]
edition = "2021"
rust-version = "1.93"
name = "sbol-db"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI entry point for sbol-db."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/marpaia/sbol-db"
[features]
default = ["lab"]
lab = ["sbol-db-server/lab"]
[[bin]]
name = "sbol-db"
path = "src/main.rs"
[[test]]
name = "cli_smoke"
path = "tests/cli_smoke.rs"
[[test]]
name = "file_utils_smoke"
path = "tests/file_utils_smoke.rs"
[[test]]
name = "inspect_smoke"
path = "tests/inspect_smoke.rs"
[[test]]
name = "jobs_ops_smoke"
path = "tests/jobs_ops_smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.7"
features = [
"http1",
"json",
"query",
"tokio",
"matched-path",
]
default-features = false
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
]
default-features = false
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.sbol]
version = "0.2.0"
[dependencies.sbol-db-backend]
version = "0.1.0"
[dependencies.sbol-db-core]
version = "0.1.0"
[dependencies.sbol-db-jobs]
version = "0.1.0"
[dependencies.sbol-db-postgres]
version = "0.1.0"
[dependencies.sbol-db-rdf]
version = "0.1.0"
[dependencies.sbol-db-server]
version = "0.1.0"
default-features = false
[dependencies.sbol-db-sparql]
version = "0.1.0"
[dependencies.sbol-db-storage]
version = "0.1.0"
[dependencies.sbol-rdf]
version = "0.2.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"postgres",
"uuid",
"chrono",
"json",
"macros",
"migrate",
]
default-features = false
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"signal",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.assert_cmd]
version = "2"