-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (42 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
52 lines (42 loc) · 1.17 KB
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
[package]
name = "wraith-redops-client"
version = "2.2.5"
description = "WRAITH RedOps Operator Console"
authors = ["WRAITH Protocol Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/doublegate/WRAITH-Protocol"
edition = "2024"
rust-version = "1.88"
[lib]
name = "wraith_redops_client_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[[bin]]
name = "wraith-redops-client"
path = "src/main.rs"
[build-dependencies]
tauri-build = { version = "2.2", features = [] }
tonic-build = "0.12"
[dependencies]
# Tauri 2.x
tauri = { version = "2.2", features = [] }
tauri-plugin-dialog = "2.2"
tauri-plugin-fs = "2.2"
tauri-plugin-shell = "2.2"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# gRPC
tonic = "0.12"
prost = "0.13"
prost-types = "0.13"
# Async runtime
tokio = { version = "1", features = ["full"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# WRAITH Protocol
wraith-core = { path = "../../../../crates/wraith-core" }
wraith-crypto = { path = "../../../../crates/wraith-crypto" }
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]