-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 752 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 752 Bytes
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
[package]
name = "mediatype"
version = "0.23.0"
edition = "2021"
authors = ["picoHz <picoHz@outlook.com>"]
description = "MIME Media-type parsing"
keywords = ["media-type", "media-types", "mime", "media-extensions"]
categories = [
"parser-implementations",
"network-programming",
"web-programming",
"email",
]
repository = "https://github.com/picoHz/mediatype"
homepage = "https://github.com/picoHz/mediatype"
documentation = "https://docs.rs/mediatype"
license = "MIT"
readme = "README.md"
[dependencies]
serde = { version = "1.0.144", optional = true, default-features = false, features = [
"alloc",
] }
[dev-dependencies]
serde_json = "1.0.85"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]