File: Cargo.toml

package info (click to toggle)
rust-apt-sources 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 260 kB
  • sloc: makefile: 2
file content (95 lines) | stat: -rw-r--r-- 1,980 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
# 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 = "apt-sources"
version = "0.1.1"
authors = [
    "Michał Fita <4925040+michalfita@users.noreply.github.com>",
    "Jelmer Vernooij <jelmer@jelmer.uk>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser for APT source files (package repositories specification)"
homepage = "https://github.com/jelmer/deb822-lossless"
readme = false
keywords = [
    "debian",
    "deb822",
    "rfc822",
    "edit",
    "apt",
]
categories = ["parser-implementations"]
license = "Apache-2.0"
repository = "https://github.com/jelmer/deb822-lossless"

[features]
default = []
key-management = [
    "dep:sequoia-openpgp",
    "dep:sequoia-net",
    "dep:tokio",
]
tracing = ["dep:tracing"]

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

[[example]]
name = "source-for-docker"
path = "examples/source-for-docker.rs"

[dependencies.deb822-fast]
version = ">=0.1"
features = ["derive"]

[dependencies.sequoia-net]
version = "0.30"
optional = true
default-features = false

[dependencies.sequoia-openpgp]
version = "2.0"
features = [
    "compression-deflate",
    "crypto-openssl",
]
optional = true
default-features = false

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "macros",
]
optional = true

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.url]
version = "2.5.4"
features = ["serde"]

[dev-dependencies.indoc]
version = "2.0.6"

[dev-dependencies.tempfile]
version = "3"