-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
53 lines (50 loc) · 1.42 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 = "homectl-server"
version = "0.9.5"
authors = ["Rasmus Lövegren <[email protected]>"]
edition = "2021"
default-run = "homectl-server"
[[bin]]
name = "homectl-server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
byteorder = "=1.5.0"
bytes = "=1.9.0"
chrono = { version = "=0.4.39", features = ["serde"] }
config = "=0.15.6"
futures = "=0.3.31"
serde = { version = "=1.0.217", features = ["derive"] }
serde_json = "=1.0.137"
palette = { version = "=0.7.6", features = ["serializing"] }
async-trait = "=0.1.85"
rand = "=0.8.5"
warp = "=0.3.7"
serde_path_to_error = "=0.1.16"
tokio = { version = "=1.43.0", features = ["full"] }
futures-util = "=0.3.31"
tokio-stream = "=0.1.17"
itertools = "=0.14.0"
sqlx = { version = "=0.8.3", features = [
"runtime-tokio-rustls",
"postgres",
"json",
] }
once_cell = "=1.20.2"
rumqttc = "=0.24.0"
toml = "=0.8.19"
ts-rs = { version = "=10.1.0", features = ["ordered-float-impl", "no-serde-warnings"] }
macro-attr = "=0.2.0"
newtype_derive = "=0.1.6"
log = "=0.4.25"
pretty_env_logger = "=0.5.0"
eyre = "=0.6.12"
color-eyre = "=0.6.3"
croner = "=2.1.0"
evalexpr = { git = "https://github.com/FruitieX/evalexpr", branch = "rasmus/type-unsafe-context", features = [
"serde_support",
"rand",
] }
ordered-float = { version = "=4.6.0", features = ["serde"] }
jsonptr = "=0.6.3"
serde_json_path = "=0.7.1"
serde-this-or-that = "=0.5.0"