22 lines
482 B
TOML
22 lines
482 B
TOML
|
[package]
|
||
|
name = "magnetar_runtime"
|
||
|
version.workspace = true
|
||
|
edition.workspace = true
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["rlib"]
|
||
|
|
||
|
[dependencies]
|
||
|
magnetar_core = { path = "../core" }
|
||
|
magnetar_sdk = { path = "../magnetar_sdk" }
|
||
|
|
||
|
either = { workspace = true }
|
||
|
futures-channel = { workspace = true }
|
||
|
futures-util = { workspace = true }
|
||
|
futures-core = { workspace = true }
|
||
|
itertools = { workspace = true }
|
||
|
miette = { workspace = true }
|
||
|
thiserror = { workspace = true }
|
||
|
|
||
|
tracing = { workspace = true }
|