0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-06-14 14:43:02 +00:00
Files
.cargo
.github
bindings
bottomless
bottomless-cli
docker-compose
docs
libsql
libsql-ffi
libsql-hrana
libsql-replication
libsql-server
libsql-shell
src
Cargo.toml
README.md
libsql-sqlite3
libsql-storage
libsql-sys
libsql-wal
tools
vendored
xtask
.dockerignore
.env
.gitignore
.gitmodules
CODE_OF_CONDUCT.md
Cargo.lock
Cargo.toml
Dockerfile
Dockerfile.dev
LICENSE.md
README-libsql.md
README.md
docker-entrypoint.sh
fly.toml
rust-toolchain.toml
libsql/libsql-shell/Cargo.toml

29 lines
719 B
TOML
Raw 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