-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
53 lines (51 loc) · 1.29 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
[package]
name = "myscontroller-rs"
version = "0.7.0"
authors = ["tsathish <[email protected]>"]
edition = "2018"
[dependencies]
serialport = "2.3"
hex = "0.3"
ihex = "1.0"
enum_primitive = "0.1"
num = "0.1"
crc16 = "0.3"
rust-ini = "0.10"
diesel = { version = "1.4.2", features = ["sqlite", "chrono","serde_json", "r2d2"] }
diesel-derive-enum = { version = "0.4", features = ["sqlite"] }
diesel_migrations = "1.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
chrono = "0.4"
r2d2 = "0.8"
crossbeam-channel = "0.3"
actix = "0.7"
actix-net = "0.2"
actix-web = "0.7"
http = "^0.1"
env_logger = "^0.5"
futures = "^0.1"
num_cpus = "1.0"
bytes = "0.4"
log = "0.4"
webthing = "0.9"
rumqtt = "0.30"
toml = "0.5"
[package.metadata.deb]
maintainer = "Sathishkumar <[email protected]>"
extended-description = """\
A proxy server for MySController \
to perform the ota updates."""
depends = "$auto"
section = "rust"
priority = "optional"
conf-files = [
"/etc/myscontroller-rs/conf.toml",
"/etc/systemd/system/myscontroller-rs.service"
]
assets = [
["target/x86_64-unknown-linux-gnu/release/myscontroller-rs", "/usr/local/bin/myscontroller-rs", "755"],
["conf.toml", "/etc/myscontroller-rs/conf.toml", "644"],
["service/systemd/myscontroller-rs.service", "/etc/systemd/system/myscontroller-rs.service", "644"],
]