0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-23 21:16:07 +00:00
Files
libsql/libsql-shell/Cargo.toml

29 lines
719 B
TOML
Raw Permalink Normal View History

[package]
name = "libsql-shell"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["libsql", "sqlite", "cli", "database", "shell"]
description = "Command-line interface for libSQL - an open-source and open-contribution fork of SQLite"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.69"
base64 = "0.21.0"
clap = { version = "4.1.8", features = [ "derive", "env"] }
home = "0.5.4"
2023-11-14 21:52:17 +08:00
once_cell = "1.18.0"
2023-10-17 14:05:27 +02:00
rusqlite = { workspace = true }
rustyline = "11.0.0"
rustyline-derive = "0.9.0"
2023-06-29 15:34:10 +08:00
tabled = "0.12.2"
tracing-subscriber = "0.3.16"
[[bin]]
name = "libsql"
path = "src/main.rs"
[package.metadata.dist]
dist = false