-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 762 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 762 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
[package]
name = "sqlite2dir"
description = "Dump sqlite3 databases to the filesystem"
categories = ["command-line-utilities", "database"]
keywords = ["sqlite", "database", "convert", "directory", "text"]
repository = "https://github.com/rotty/sqlite2dir"
homepage = "https://github.com/rotty/sqlite2dir"
readme = "README.md"
version = "0.2.0"
authors = ["Andreas Rottmann <a.rottmann@gmx.at>"]
license = "GPL-3.0-or-later"
edition = "2018"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
rusqlite = "0.31.0"
structopt = { version = "0.3.1", default-features = false }
anyhow = "1.0.38"
serde_json = "1.0.40"
git2 = { version = "0.18.2", default-features = false }
once_cell = "1.1.0"
[features]
vendored-sqlite = ["rusqlite/bundled"]