mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 08:34:19 +01:00
32 lines
882 B
TOML
32 lines
882 B
TOML
# Copyright 2025 the Turso authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "turso"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Turso Rust API"
|
|
|
|
[features]
|
|
default = ["experimental_indexes", "mimalloc"]
|
|
conn_raw_api = ["turso_core/conn_raw_api"]
|
|
experimental_indexes = []
|
|
antithesis = ["turso_core/antithesis"]
|
|
tracing_release = ["turso_core/tracing_release"]
|
|
mimalloc = ["dep:mimalloc"]
|
|
|
|
[dependencies]
|
|
turso_core = { workspace = true, features = ["io_uring"] }
|
|
thiserror = { workspace = true }
|
|
tracing-subscriber.workspace = true
|
|
tracing.workspace = true
|
|
mimalloc = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
rand = { workspace = true }
|
|
rand_chacha = { workspace = true }
|