File: Cargo.toml

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

[workspace.package]
edition = "2021"
rust-version = "1.76"
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]
unsafe_code = "forbid"
rust-2018-idioms = "forbid"

[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 = "1.0" }