mirror of
https://github.com/neodyland/sbv2-api.git
synced 2025-12-22 23:49:58 +00:00
Bumps [log](https://github.com/rust-lang/log) from 0.4.28 to 0.4.29. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.28...0.4.29) --- updated-dependencies: - dependency-name: log dependency-version: 0.4.29 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
853 B
TOML
30 lines
853 B
TOML
[package]
|
|
name = "sbv2_api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
axum = "0.8.7"
|
|
dotenvy.workspace = true
|
|
env_logger.workspace = true
|
|
log = "0.4.29"
|
|
sbv2_core = { version = "0.2.0-alpha6", path = "../sbv2_core", features = ["aivmx"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
|
utoipa = { version = "5.4.0", features = ["axum_extras"] }
|
|
utoipa-scalar = { version = "0.3.0", features = ["axum"] }
|
|
|
|
[features]
|
|
coreml = ["sbv2_core/coreml"]
|
|
cuda = ["sbv2_core/cuda"]
|
|
cuda_tf32 = ["sbv2_core/cuda_tf32"]
|
|
dynamic = ["sbv2_core/dynamic"]
|
|
directml = ["sbv2_core/directml"]
|
|
tensorrt = ["sbv2_core/tensorrt"]
|