-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (41 loc) · 1.24 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
[package]
name = "sirius-proxima"
description = "IOT RaspberryPI Mothership Module"
version = "0.1.0"
edition = "2018"
authors = ["Ganesh Rathinavel <[email protected]>"]
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# rust_gpiozero = "0.2.1"
actix-web = { version = "4.0.0-beta.15", features = ["openssl", "default"] }
actix = "0.12.0"
actix-identity = "0.4.0-beta.6"
actix-http = "3.0.0-beta.16"
actix-rt = "2.5.0"
actix-cors = "0.6.0-beta.7"
actix-service = "2.0.2"
openssl = "0.10"
#tracing-actix-web = "0.5.0-beta.6"
#tracing = "0.1.29"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.72"
serde_yaml = "0.8.21"
serde-value = "0.7.0"
local-ip-address = "0.4.4"
fern = { version = "0.6.0", features = ["colored"] }
log = "0.4.14"
anyhow = "1.0.51"
thiserror = "1.0.30"
lazy_static = "1.4.0"
chrono = "0.4.19"
chrono-tz = { version = "0.6.0", git = "https://github.com/ganeshrvel/chrono-tz", branch = "utc+0530" }
tokio = { version = "1.14.0", features = ["full"] }
teloxide = { version = "0.9.0" }
teloxide-core = { version = "0.6.0" }
[dev-dependencies]
rusty-hook = "^0.11.2"
[profile.release]
panic = "abort"
lto = true
codegen-units = 1