2026-01-04 05:19:47 +05:00
|
|
|
[package]
|
|
|
|
|
name = "jarvis-core"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
serde_yaml.workspace = true
|
|
|
|
|
once_cell.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
rand.workspace = true
|
|
|
|
|
seqdiff.workspace = true
|
|
|
|
|
hound.workspace = true
|
|
|
|
|
platform-dirs.workspace = true
|
|
|
|
|
rodio.workspace = true
|
|
|
|
|
kira.workspace = true
|
|
|
|
|
pv_recorder.workspace = true
|
|
|
|
|
rustpotter.workspace = true
|
2026-01-04 09:00:51 +05:00
|
|
|
parking_lot.workspace = true
|
2026-01-05 01:22:45 +05:00
|
|
|
toml.workspace = true
|
|
|
|
|
sha2.workspace = true
|
2026-01-06 23:32:58 +05:00
|
|
|
nnnoiseless = { workspace = true, optional = true }
|
2026-01-07 00:15:36 +05:00
|
|
|
tokio-tungstenite = { workspace = true, optional = true }
|
|
|
|
|
futures-util = { workspace = true, optional = true }
|
2026-01-04 09:00:51 +05:00
|
|
|
|
|
|
|
|
# pv_recorder = { workspace = true, optional = true }
|
|
|
|
|
vosk = { version = "0.3.1", optional = true }
|
2026-01-05 01:22:45 +05:00
|
|
|
intent-classifier = { version = "0.1.0", optional = true }
|
2026-01-04 09:00:51 +05:00
|
|
|
# rustpotter = { workspace = true, optional = true }
|
2026-01-04 05:19:47 +05:00
|
|
|
|
2026-01-05 01:22:45 +05:00
|
|
|
tokio = { version = "1", features = ["sync"], optional = true }
|
|
|
|
|
|
2026-01-04 05:19:47 +05:00
|
|
|
[features]
|
|
|
|
|
default = ["jarvis_app"]
|
2026-01-07 00:15:36 +05:00
|
|
|
jarvis_app = ["vosk", "intent-classifier", "tokio", "nnnoiseless", "tokio-tungstenite", "futures-util"]
|
2026-01-05 02:23:32 +05:00
|
|
|
intent = ["intent-classifier", "tokio"]
|