-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
82 lines (75 loc) · 2.17 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "url-bot-rs"
version = "0.4.3"
description = "Minimal IRC URL bot in Rust"
keywords = ["irc", "bot", "title"]
repository = "https://github.com/nuxeh/url-bot-rs"
authors = ["Edward Cragg <[email protected]>"]
license = "ISC"
readme = "README.md"
build = "build.rs"
edition = "2018"
include = [
"src/**/*",
"build.rs",
"Cargo.*",
"README.md",
"COPYING",
"example.config.toml"
]
[build-dependencies]
built = { version = "0.5.1", features = ["git2"] }
man = "0.3.0"
[dev-dependencies]
tiny_http = "0.11.0"
diff = "0.1.13"
tempfile = "3.3.0"
[dependencies]
irc = "0.13.6"
tokio-core = "0.1.18"
rusqlite = "0.14.0"
chrono = "0.4.19"
docopt = "1.1.1"
serde = "1.0.136"
serde_derive = "1.0.104"
itertools = "0.10.3"
regex = "1.6.0"
lazy_static = "1.4.0"
failure = "0.1.8"
reqwest = { version = "0.11.5", features = ["blocking", "cookies", "json"] }
serde_rusqlite = "0.14.0"
mime = "0.3.16"
humansize = "1.1.1"
unicode-segmentation = "1.9.0"
toml = "0.5.9"
directories = "4.0.1"
log = "0.4.17"
stderrlog = "0.5.3"
atty = "0.2.14"
scraper = { version = "0.13.0", default-features = false, features = [] }
phf = "0.7.24"
openssl = { version = "0.10.41", features = ["vendored"], optional = true }
[dependencies.image]
version = "0.22.5"
default-features = false
features = ["gif_codec", "jpeg", "png_codec", "pnm", "tiff", "bmp"]
[features]
default = []
openssl_vendored = ["openssl/vendored"]
sqlite_bundled = ["rusqlite/bundled"]
[package.metadata.deb]
extended-description = """\
Standalone IRC bot; for resolving URLs posted, retrieving, and posting page
titles to a configurable IRC server and channels"""
maintainer-scripts = "debian"
assets = [
["example.config.toml", "usr/share/doc/url-bot-rs/", "644"],
["target/assets/url-bot-rs.1", "usr/local/share/man/man1/", "644"],
["systemd/url-bot-rs.service", "lib/systemd/system/", "644"],
["target/release/url-bot-rs", "usr/bin/", "755"],
["target/release/url-bot-get", "usr/bin/", "755"]
]
[badges]
coveralls = { repository = "nuxeh/url-bot-rs", branch = "master", service = "github" }
codecov = { repository = "nuxeh/url-bot-rs", branch = "master" }
travis-ci = { repository = "nuxeh/url-bot-rs", branch = "master" }