File: Cargo.toml

package info (click to toggle)
rust-debian-watch 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 596 kB
  • sloc: makefile: 2
file content (110 lines) | stat: -rw-r--r-- 2,110 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "debian-watch"
version = "0.4.0"
authors = ["Jelmer Vernooij <jelmer@jelmer.uk>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "parser for Debian watch files"
homepage = "https://github.com/jelmer/debian-watch-rs"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/jelmer/debian-watch-rs.git"

[features]
blocking = ["reqwest?/blocking"]
deb822 = ["dep:deb822-lossless"]
default = [
    "linebased",
    "deb822",
]
discover = [
    "scraper",
    "reqwest",
]
linebased = []
pgp = [
    "sequoia-openpgp",
    "anyhow",
]

[lib]
name = "debian_watch"
path = "src/lib.rs"

[[bin]]
name = "convert-watch-v5"
path = "src/bin/convert-watch-v5.rs"
required-features = [
    "deb822",
    "linebased",
]

[dependencies.anyhow]
version = "1.0"
optional = true

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.deb822-lossless]
version = "0.5.7"
optional = true

[dependencies.debversion]
version = ">=0.4.7, <0.6"

[dependencies.m_lexer]
version = "0.0.4"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = ">=0.12,<0.14"
optional = true

[dependencies.rowan]
version = "0.16.1"

[dependencies.scraper]
version = ">=0.20,<0.26"
optional = true

[dependencies.sequoia-openpgp]
version = "2.0"
features = ["crypto-nettle"]
optional = true
default-features = false

[dependencies.url]
version = "2.5.7"

[dev-dependencies.maplit]
version = "1.0.2"

[dev-dependencies.tiny_http]
version = "0.12"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
]