-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (61 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
66 lines (61 loc) · 1.92 KB
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
[workspace]
members = ["cpp", "tools/*"]
resolver = "2"
[workspace.package]
version = "0.10.2"
authors = [
"Adolfo Ochagavía <github@adolfo.ochagavia.nl>",
"Bas Zalmstra <zalmstra.bas@gmail.com>",
"Tim de Jager <tdejager89@gmail.com>",
]
homepage = "https://github.com/mamba-org/resolvo"
repository = "https://github.com/mamba-org/resolvo"
license = "BSD-3-Clause"
edition = "2024"
readme = "README.md"
keywords = ["dependency", "solver", "version"]
categories = ["algorithms"]
rust-version = "1.85.1"
[package]
name = "resolvo"
version.workspace = true
authors.workspace = true
description = "Fast package resolver written in Rust (CDCL based SAT solving)"
keywords.workspace = true
categories.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
readme.workspace = true
rust-version.workspace = true
[features]
diagnostics = ["tabwriter", "human_bytes"]
[dependencies]
ahash = "0.8.12"
itertools = "0.14"
petgraph = "0.8"
tracing = "0.1.41"
elsa = "1.11.2"
bitvec = "1.0.1"
serde = { version = "1.0", features = ["derive"], optional = true }
futures = { version = "0.3", default-features = false, features = ["alloc", "async-await"] }
event-listener = "5.4"
indexmap = "2"
tokio = { version = "1.45", features = ["rt"], optional = true }
async-std = { version = "1.13", default-features = false, features = [
"alloc",
"default",
], optional = true }
version-ranges = { version = "0.1.1", optional = true }
# Dependencies for the diagnostics feature
tabwriter = { version = "1.4.1", optional = true }
human_bytes = { version = "0.4.3", optional = true }
[dev-dependencies]
insta = "1.43.1"
proptest = "1.7"
tracing-test = { version = "0.2.5", features = ["no-env-filter"] }
tokio = { version = "1.45.1", features = ["time", "rt"] }
resolvo = { path = ".", features = ["tokio", "version-ranges"] }
serde_json = "1.0"
chumsky = { version = "0.10.1" , features = ["pratt"]}