Initial Commit

This commit is contained in:
AviiNL
2023-12-22 04:50:17 +01:00
parent 15f764aae8
commit f79b6b5dfb
41 changed files with 4379 additions and 270 deletions

View File

@@ -5,12 +5,40 @@ edition.workspace = true
repository.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints]
workspace = true
[dependencies]
bevy.workspace = true
dcs-grpc.workspace = true
guardian_commands.workspace = true
serde.workspace = true
serde_json.workspace = true
shlex.workspace = true
tokio.workspace = true
async-compat = "0.2.1"
serde_repr = "0.1"
crossbeam-channel = "0.5.9"
tonic = "0.10"
tokio-util = { version = "0.7", features = ["codec", "net"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures-util = { version = "0.3", features = ["sink"] }
futures-core = { version = "0.3" }
base64 = "0.21.5"
byteorder = "1"
bytes = "1"
uuid = { version = "1.1", features = ["v4"] }
reqwest = { version = "0.11.22", features = ["blocking", "multipart"] }
audiopus = "0.3.0-rc.0"
thiserror = "1.0"
symspell = "0.4.3"
simsearch = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.52"
features = [
"Foundation",
"Foundation_Collections",
"Storage_Streams",
"Media_SpeechSynthesis",
]