add circles app and libraries
This commit is contained in:
45
src/launcher/Cargo.toml
Normal file
45
src/launcher/Cargo.toml
Normal file
@@ -0,0 +1,45 @@
|
||||
[package]
|
||||
name = "launcher"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
name = "launcher"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "launcher"
|
||||
path = "src/cmd/main.rs"
|
||||
|
||||
[dependencies]
|
||||
tokio = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
dirs = "5.0"
|
||||
log = { workspace = true }
|
||||
env_logger = { workspace = true }
|
||||
comfy-table = "7.0"
|
||||
actix-web = { workspace = true }
|
||||
secp256k1 = { version = "0.28.0", features = ["rand-std"] }
|
||||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
once_cell = "1.19.0"
|
||||
rhai = "1.18.0"
|
||||
|
||||
# Path dependencies to other local crates
|
||||
heromodels = { path = "../../../db/heromodels" }
|
||||
engine = { path = "../../../rhailib/src/engine" }
|
||||
rhailib_worker = { path = "../../../rhailib/src/worker" }
|
||||
rhai_client = { path = "../../../rhailib/src/client" }
|
||||
ourdb = { path = "../../../db/ourdb" } # Added for IdSequence
|
||||
circle_ws_lib = { path = "../server_ws" }
|
||||
tokio-tungstenite = "0.23"
|
||||
url = "2.5.2"
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = { workspace = true }
|
||||
tempfile = "3.3"
|
||||
tokio-tungstenite = { version = "0.23", features = ["native-tls"] }
|
||||
futures-util = "0.3"
|
||||
redis = { version = "0.25.4", features = ["tokio-comp"] }
|
||||
rand = "0.8"
|
||||
url = "2.5.2"
|
Reference in New Issue
Block a user