-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (35 loc) · 1.15 KB
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "owoof"
version = "0.2.0-pre.4"
authors = ["sqwishy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/sqwishy/owoof"
homepage = "https://github.com/sqwishy/owoof"
description = "Uses SQLite to store data and a datalog-like format to query it. "
keywords = ["datalog", "sqlite"]
[[bin]]
name = "owoof"
required-features = ["cli"]
[[bin]]
name = "owoof-csv"
required-features = ["cli", "csv"]
[package.metadata.docs.rs]
features = ["serde", "serde_json"]
[features]
default = ["explain"]
explain = []
cli = ["serde", "serde_json", "anyhow", "uuid/serde", "atty"]
# serde = ["serde", "uuid/serde"]
[dependencies]
thiserror = "1"
rusqlite = { version = "0.26", features = ["uuid", "functions", "hooks"] }
uuid = { version = "0.8", features = ["v4"] }
# chrono = { version = "0.4", features = ["serde"] }
anyhow = { version = "1", optional = true }
serde = { version = "1", optional = true, features = ["derive"] }
serde_json = { version = "1", optional = true }
csv = { version = "1", optional = true }
atty = { version = "0.2", optional = true }
[dev-dependencies]
anyhow = "1"