-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "debversion"
version = "0.4.4"
edition = "2021"
authors = [ "Jelmer Vernooij <[email protected]>",]
license = "Apache-2.0"
description = "Debian version parsing, manipulation and comparison"
repository = "https://github.com/jelmer/debversion-rs"
documentation = "https://docs.rs/debversion"
keywords = ["debian", "version", "dpkg"]
homepage = "https://github.com/jelmer/debversion-rs"
categories = ["parser-implementations"]
[features]
default = []
sqlx = [ "sqlx/postgres",]
python-debian = [ "dep:pyo3",]
serde = [ "dep:serde",]
[dependencies]
chrono = { version = "0.4.38", default-features = false, features = ["alloc"] }
lazy-regex = ">=2"
[dependencies.pyo3]
version = ">=0.22,<0.24"
optional = true
[dependencies.sqlx]
version = "^0.8"
optional = true
default-features = false
features = [ "postgres",]
[dependencies.serde]
version = "^1"
optional = true
[dev-dependencies.sqlx]
version = "^0.8"
default-features = false
features = [ "runtime-async-std-native-tls",]
[dev-dependencies.pyo3]
version = "*"
features = [ "auto-initialize",]