File: Cargo.toml.orig

package info (click to toggle)
rust-sequoia-openpgp-mt 0.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 232 kB
  • sloc: makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,249 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
[package]
name = "sequoia-openpgp-mt"
description = "Multi-threaded parsing of OpenPGP data"
version = "0.2.0"
authors = [
    "Neal H. Walfield <neal@sequoia-pgp.org>",
]
documentation = "https://docs.rs/sequoia-openpgp-mt"
edition = "2021"
readme = "README.md"
keywords = ["cryptography", "openpgp", "pgp", "multi-threaded", "parallel"]
categories = ["cryptography", "authentication", "email"]
license = "LGPL-2.0-or-later"
rust-version = "1.79"

[badges]
gitlab = { repository = "sequoia-pgp/sequoia-openpgp-mt" }
maintenance = { status = "passively-maintained" }

[dependencies]
anyhow = "1"
buffered-reader = "1"
num_cpus = "1"
sequoia-openpgp = { version = "2", default-features = false }

[target.'cfg(not(windows))'.dev-dependencies]
# Enables a crypto backend for the tests:
sequoia-openpgp = { version = "2", default-features = false, features = ["crypto-nettle", "__implicit-crypto-backend-for-tests"] }

[target.'cfg(windows)'.dev-dependencies]
# Enables a crypto backend for the tests:
sequoia-openpgp = { version = "2", default-features = false, features = ["crypto-cng", "__implicit-crypto-backend-for-tests"] }

[package.metadata.docs.rs]
# Enables a crypto backend for the docs.rs generation:
features = ["sequoia-openpgp/default"]