File: Cargo.toml

package info (click to toggle)
rust-microformats 0.16.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,136 kB
  • sloc: javascript: 71; makefile: 26; sh: 1
file content (31 lines) | stat: -rw-r--r-- 784 bytes parent folder | download
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
[workspace]
resolver = "2"
members = ["types", "library"]

[workspace.package]
edition = "2024"
rust-version = "1.85"
license = "LGPL-3.0"
publish = true
version = "0.8.1"
repository = "https://gitlab.com/maxburon/microformats-parser"
homepage = "https://microformats.io"

[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"

[workspace.lints.rust]

[workspace.dependencies]
lazy_static = "1.4"
regex = { version = "1.10", features = ["perf"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
time = { version = "0.3", features = ["macros", "serde-human-readable"] }
url = { version = "2.0", features = ["serde"] }
tracing = { version = "0.1" }
thiserror = { version = "2.0" }