blob: c8b400c95bf2b6626559dcc132a5f4e7a6638b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[package]
name = "karld"
version = "0.1.5"
edition = "2021"
[dependencies]
karlcommon = { path = "../karlcommon" }
serde = { version = "1.0.137", features = ["derive"] }
anyhow = "1.0.57"
log = "0.4.17"
env_logger = "0.9.0"
crossbeam-channel = "0.5.4"
serde_json = "1.0.81"
chrono = "0.4.19"
lazy_static = "1.4.0"
tungstenite = { version = "0.17.3", optional = true }
[features]
default = ["unix"]
websocket = ["dep:tungstenite"]
unix = []
|