summaryrefslogtreecommitdiffstats
path: root/entities/Cargo.toml
blob: 91f9896f6571313f85c100dc46d76ee472c27fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "mastodon-async-entities"
description = "Types for (de)serializing entities from the Mastodon API; part of mastodon-async"

version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
thiserror = "1"
static_assertions = "1"
derive_is_enum_variant = "0.1.1"

[dependencies.derive_builder]
version = "0.12.0"
features = ["clippy"]

[dependencies.log]
version = "0.4"
features = ["kv_unstable", "serde", "std", "kv_unstable_serde", "kv_unstable_std"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.time]
version = ">=0.3.16"
features = ["parsing", "serde", "formatting"]

[dependencies.url]
version = "2.3.1"
features = ["serde"]

[dependencies.classic-bitfield]
version = "0.2"
features = ["serde"]

[dependencies.isolang]
version = "2.2"
features = ["serde"]

[dev-dependencies]
serde_json = "1.0.91"