-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
43 lines (37 loc) · 1.07 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
[package]
name = "dan"
version = "0.1.1"
authors = ["Nathaniel Cook <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Dan is a home automation programming langauge"
homepage = "https://github.com/nathanielc/dan"
repository = "https://github.com/nathanielc/dan"
readme = "README.md"
[lib]
path = "src/lib.rs"
[[bin]]
name = "dan"
[build-dependencies]
lalrpop = "0.20"
[dependencies]
anyhow = "1.0"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
itertools = "0.10"
log = "0.4"
env_logger = "0.9"
async-trait = "0.1"
chrono = "0.4"
structopt = { version = "0.3", default-features = false }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
async-std = "1"
mqtt-async-client = {version ="0.3", default-features = false}
regex = "1"
lalrpop-util = { version = "0.20", features = ["lexer", "unicode"] }
macro-map = { git = "https://github.com/masinc/macro-map-rust" }
[dev-dependencies]
expect-test = "1.5.0"
[patch.crates-io]
mqtt-async-client = { git = "https://github.com/nathanielc/mqtt-async-client-rs.git", branch = "drain_shutdown" }