-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (29 loc) · 806 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
30
31
32
33
34
35
36
37
[package]
name = "xkcdfs"
version = "0.1.0"
authors = ["Daniel Dulaney <dan@dulaney.xyz>"]
description = "Browse xkcd in comfort and style"
edition = "2018"
[dependencies]
# FUSE and some needed sub-dependencies
fuse = "0.3.1"
libc = "*"
time = "*"
# For parsing API responses
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# For HTTP requests
reqwest = "0.9.20"
# For the SQLite cache
rusqlite = "0.20"
# For image rendering
cairo-rs = { version = "0.7.1", features = ["png"] }
jpeg-decoder = { version = "0.1", default-features = false }
unicode-linebreak = "0.1.0"
# For logging
log = "0.4"
simplelog = "0.7"
# For command-line parsing
clap = "2.33"
[patch.crates-io]
jpeg-decoder = { git = "https://github.com/danieldulaney/jpeg-decoder.git", branch = "pixel-format-sizes" }