-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (35 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
43 lines (35 loc) · 857 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "ircbot"
license = "MIT/Apache 2.0"
repository = "http://github.com/infinityb/rust-irc-bot"
description = "IRC bot in rust"
version = "0.1.0"
authors = [ "Stacey Ell <stacey.ell@gmail.com>" ]
[[bin]]
name = "ircbot"
[dependencies]
log = "0.3"
toml = "0.1"
time = "0.1"
url = "0.2"
rustc-serialize = "0.3"
rand = "0.3"
hyper = "0.9"
bytes = "0.3"
phf = "0.7"
phf_macros = "0.7"
mio = "0.5"
[dependencies.irc]
git = "https://github.com/infinityb/rust-irc"
[package.metadata.deb]
maintainer = "Stacey Ell <stacey.ell@gmail.com>"
copyright = "2016, Stacey Ell <stacey.ell@gmail.com>"
license_file = ["LICENSE-MIT", "4"]
extended_description = "swag"
depends = "libc6"
section = "utility"
priority = "optional"
assets = [
["target/release/ircbot", "usr/bin/", "755"],
["README.md", "usr/share/doc/rust-irc-bot/README", "644"],
]