mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 03:54:21 +01:00
58 lines
1.9 KiB
TOML
58 lines
1.9 KiB
TOML
# Copyright 2023 the Limbo authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
authors.workspace = true
|
|
default-run = "tursodb"
|
|
description = "The Turso interactive SQL shell"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "turso_cli"
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
|
|
[package.metadata.dist]
|
|
dist = true
|
|
|
|
[[bin]]
|
|
name = "tursodb"
|
|
path = "main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
cfg-if = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete = { version = "=4.5.47", features = ["unstable-dynamic"] }
|
|
comfy-table = "7.1.4"
|
|
csv = "1.3.1"
|
|
ctrlc = "3.4.4"
|
|
dirs = "5.0.1"
|
|
env_logger = { workspace = true }
|
|
libc = "0.2.172"
|
|
turso_core = { path = "../core", default-features = true, features = ["cli_only"] }
|
|
limbo_completion = { path = "../extensions/completion", features = ["static"] }
|
|
miette = { workspace = true, features = ["fancy"] }
|
|
nu-ansi-term = {version = "0.50.1", features = ["serde", "derive_serde_style"]}
|
|
rustyline = { version = "15.0.0", default-features = true, features = [
|
|
"derive",
|
|
] }
|
|
shlex = "1.3.0"
|
|
syntect = { git = "https://github.com/trishume/syntect.git", rev = "64644ffe064457265cbcee12a0c1baf9485ba6ee" }
|
|
tracing = { workspace = true }
|
|
tracing-appender = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
toml = {version = "0.8.20", features = ["preserve_order"]}
|
|
schemars = {version = "0.8.22", features = ["preserve_order"]}
|
|
serde = { workspace = true, features = ["derive"]}
|
|
validator = {version = "0.20.0", features = ["derive"]}
|
|
toml_edit = {version = "0.22.24", features = ["serde"]}
|
|
serde_json = "1.0"
|
|
mimalloc = { workspace = true }
|
|
|
|
[features]
|
|
default = ["io_uring"]
|
|
io_uring = ["turso_core/io_uring"]
|
|
tracing_release = ["turso_core/tracing_release"]
|
|
|
|
[build-dependencies]
|
|
syntect = { git = "https://github.com/trishume/syntect.git", rev = "64644ffe064457265cbcee12a0c1baf9485ba6ee" }
|