2023-08-04 10:28:35 +00:00
|
|
|
[package]
|
|
|
|
name = "magnetar_sdk"
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
2023-09-29 14:57:54 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-08-04 10:28:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-25 17:45:59 +00:00
|
|
|
magnetar_mmm_parser = { path = "../magnetar_mmm_parser" }
|
2023-08-04 10:28:35 +00:00
|
|
|
magnetar_sdk_macros = { path = "./macros" }
|
|
|
|
|
|
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
|
|
|
|
|
|
http = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json = { workspace = true }
|
2023-11-07 20:15:35 +00:00
|
|
|
serde_urlencoded = { workspace = true }
|
2023-08-04 10:28:35 +00:00
|
|
|
|
2023-09-23 16:05:13 +00:00
|
|
|
ts-rs = { workspace = true, features = ["chrono", "chrono-impl"] }
|
|
|
|
|
2023-10-25 17:45:59 +00:00
|
|
|
unicode-segmentation = { workspace = true }
|