-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
29 lines (27 loc) · 843 Bytes
/
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
[package]
name = "aocf"
version = "0.1.21"
authors = ["Ed Cragg <[email protected]>"]
edition = "2018"
license = "ISC"
readme = "README.md"
description = "A crate and CLI helper tool for Advent of Code"
repository = "https://github.com/nuxeh/aocf"
keywords = ["advent", "code", "cli", "tool", "helper"]
[dependencies]
diesel = { version = "1.4.5", features = ["sqlite"], optional = true }
failure = "0.1.8"
html2md = { version = "0.2.10", optional = true }
regex = "1.4.2"
serde = "1.0.117"
serde_derive = "1.0.117"
serde_json = "1.0.59"
tempfile = "3.1.0"
libsqlite3-sys = { version = ">=0.8.0, <0.21.0", features = ["min_sqlite_version_3_7_16", "bundled"], optional = true }
clap = { version = "4.0", features = ["derive"] }
atty = "0.2.14"
ureq = "2.2.0"
[features]
sqlite = ["diesel", "libsqlite3-sys"]
html_parsing = ["html2md"]
default = []