Files
turso/cli/Cargo.toml
2023-09-02 11:40:11 +03:00

24 lines
492 B
TOML

# Copyright 2023 the Lig authors. All rights reserved. MIT license.
[package]
name = "lig"
version = "0.0.0"
authors.workspace = true
default-run = "lig"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "The Lig interactive SQL shell"
[[bin]]
name = "lig"
path = "main.rs"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.0", features = ["derive"] }
cli-table = "0.4.7"
dirs = "5.0.1"
lig_core = { path = "../core" }
rustyline = "12.0.0"