0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2024-12-15 02:49:41 +00:00
libsql/libsql-shell/Cargo.toml
2023-11-17 08:43:09 -06:00

29 lines
719 B
TOML

[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"
once_cell = "1.18.0"
rusqlite = { workspace = true }
rustyline = "11.0.0"
rustyline-derive = "0.9.0"
tabled = "0.12.2"
tracing-subscriber = "0.3.16"
[[bin]]
name = "libsql"
path = "src/main.rs"
[package.metadata.dist]
dist = false