-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 993 Bytes
/
Cargo.toml
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
[package]
name = "ogp"
version = "0.1.0"
edition = "2021"
readme = "README.md"
license-file = "LICENSE"
authors = ["Nelson Dominguez <ekkolon@proton.me>"]
repository = "https://github.com/ekkolon/ogp/"
documentation = "https://docs.rs/ogp"
homepage = "https://github.com/ekkolon/ogp#readme"
categories = ["data-structures", "encoding"]
keywords = [
"seo",
"structured-data",
"open-graph-protocol",
"social-media",
"rich-snippets",
]
[badges]
codecov = { repository = "ekkolon/ogp", branch = "main", service = "github" }
maintenance = { status = "experimental" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.31", features = ["serde", "clock"] }
isocountry = "0.3.2"
isolang = "2.4.0"
regex = "1.10.2"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.50"
url = { version = "2.5.0", features = ["serde"] }
[dev-dependencies]
anyhow = "1.0.75"