-
Notifications
You must be signed in to change notification settings - Fork 36
/
Cargo.toml
52 lines (44 loc) · 1.42 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
46
47
48
49
50
51
52
# SPDX-License-Identifier: MPL-2.0
[workspace]
members = ["version-ranges"]
[package]
name = "pubgrub"
version = "0.2.1"
authors = [
"Matthieu Pizenberg <[email protected]>",
"Alex Tokarev <[email protected]>",
"Jacob Finkelman <[email protected]>",
]
edition = "2021"
description = "PubGrub version solving algorithm"
readme = "README.md"
repository = "https://github.com/pubgrub-rs/pubgrub"
license = "MPL-2.0"
keywords = ["dependency", "pubgrub", "semver", "solver", "version"]
categories = ["algorithms"]
include = ["Cargo.toml", "LICENSE", "README.md", "src/**", "tests/**", "examples/**", "benches/**"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
indexmap = "2.6.0"
log = "0.4.22" # for debug logs in tests
priority-queue = "2.1.1"
rustc-hash = ">=1.0.0, <3.0.0"
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "2.0"
version-ranges = { version = "0.1.0", path = "version-ranges" }
[dev-dependencies]
criterion = { version = "2.7.2", package = "codspeed-criterion-compat" }
env_logger = "0.11.5"
proptest = "1.5.0"
ron = "=0.9.0-alpha.0"
varisat = "0.2.2"
version-ranges = { version = "0.1.0", path = "version-ranges", features = ["proptest"] }
[features]
serde = ["dep:serde", "version-ranges/serde"]
[[bench]]
name = "large_case"
harness = false
required-features = ["serde"]
[[bench]]
name = "sudoku"
harness = false