This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
62 lines (55 loc) · 1.65 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
[package]
name = "tox-node"
version = "0.1.1"
authors = [
"Roman Proskuryakov <[email protected]>",
"Evgeny Kurnevsky <[email protected]>",
"Namsoo CHO <[email protected]>",
]
readme = "README.md"
description = "A server application to run tox node"
documentation = "https://docs.rs/crate/tox-node/"
repository = "https://github.com/tox-rs/tox-node/"
keywords = ["p2p", "instant-messaging", "tox", "toxcore", "networking"]
categories = ["multimedia"]
license = "GPL-3.0+"
edition = "2018"
[package.metadata.deb]
maintainer = "Roman Proskuryakov <[email protected]>"
license-file = ["LICENSE"]
depends = "$auto, systemd"
extended-description = "A server application to run tox node written in pure Rust"
section = "net"
priority = "optional"
assets = [
["target/release/tox-node", "/usr/bin/", "755"],
["README.md", "/usr/share/doc/tox-node/README", "644"],
["dpkg/tox-node.service", "/lib/systemd/system/", "644"],
["dpkg/config.yml", "/etc/tox-node/", "644"],
["dpkg/usr.bin.tox-node", "/etc/apparmor.d/", "644"],
]
conf-files = ["/etc/tox-node/config.yml"]
maintainer-scripts = "dpkg/info"
[dependencies]
chrono = "0.4"
clap = "2.33"
env_logger = "0.7"
failure = "0.1"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
hex = "0.4"
itertools = "0.9"
log = "0.4"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
tox = "0.1.1"
[dependencies.config]
version = "0.10"
default-features = false
features = ["yaml"]
[dependencies.tokio]
version = "0.2"
default-features = false
features = ["net", "time", "rt-core", "rt-threaded"]
[target.'cfg(unix)'.dependencies]
syslog = "5.0"