2022-12-30 09:41:37 +00:00
|
|
|
[package]
|
|
|
|
name = "mastodon-async-entities"
|
2023-01-29 12:03:09 +00:00
|
|
|
description = "Types for (de)serializing entities from the Mastodon API; part of mastodon-async"
|
2022-12-30 09:54:06 +00:00
|
|
|
|
|
|
|
version.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
2023-04-15 00:20:58 +01:00
|
|
|
rust-version.workspace = true
|
2022-12-30 09:41:37 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
futures = "0.3.25"
|
|
|
|
thiserror = "1"
|
2023-01-21 19:36:45 +00:00
|
|
|
static_assertions = "1"
|
2023-03-19 15:17:55 +00:00
|
|
|
derive_is_enum_variant = "0.1.1"
|
2023-01-21 19:36:45 +00:00
|
|
|
|
|
|
|
[dependencies.log]
|
|
|
|
version = "0.4"
|
|
|
|
features = ["kv_unstable", "serde", "std", "kv_unstable_serde", "kv_unstable_std"]
|
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1"
|
|
|
|
features = ["derive"]
|
|
|
|
|
|
|
|
[dependencies.time]
|
2023-06-09 16:38:49 +01:00
|
|
|
version = ">=0.3.16"
|
2023-01-21 19:36:45 +00:00
|
|
|
features = ["parsing", "serde", "formatting"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0.91"
|