-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 743 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "sql-schema"
description = "Declarative SQL schema migrations"
keywords = ["sql", "schema", "migration", "migrations"]
categories = ["development-tools", "command-line-utilities", "database"]
version = "0.6.2"
edition = "2021"
license = "Apache-2.0"
authors = ["Jesse Stuart <rust@jesse.io>"]
repository = "https://github.com/jvatic/sql-schema"
include = ["src/**/*.rs", "Cargo.toml", "LICENSE.txt"]
[features]
default = ["clap"]
clap = ["dep:clap"]
[dependencies]
annotate-snippets = "0.11.5"
anyhow = "1.0.95"
bon = "3.3.2"
camino = "1.1.9"
chrono = "0.4.40"
clap = { version = "4.5.29", features = ["derive"], optional = true }
sqlformat = "0.3.5"
sqlparser = { version = "0.61.0" }
thiserror = "2.0.12"
winnow = "0.7.3"