15 lines
320 B
TOML
15 lines
320 B
TOML
|
[package]
|
||
|
name = "magnetar_common"
|
||
|
version.workspace = true
|
||
|
edition.workspace = true
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["rlib"]
|
||
|
|
||
|
[dependencies]
|
||
|
magnetar_core = { path = "../core" }
|
||
|
|
||
|
percent-encoding = { workspace = true }
|
||
|
serde = { workspace = true, features = ["derive"] }
|
||
|
toml = { workspace = true }
|
||
|
thiserror = { workspace = true }
|