-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (53 loc) · 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (53 loc) · 1.57 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
[package]
name = "solverforge_py"
version = "0.6.6"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.95"
description = "PyO3 dynamic Python bindings for the SolverForge constraint solver"
readme = "README.md"
repository = "https://github.com/SolverForge/solverforge-py"
homepage = "https://solverforge.org"
documentation = "https://docs.solverforge.org"
include = [
"/Cargo.lock",
"/LICENSE",
"/README.md",
"/pyproject.toml",
"/python/solverforge/*.py",
"/python/solverforge/*.pyi",
"/python/solverforge/py.typed",
"/rust-toolchain.toml",
"/src/**",
]
[lib]
name = "solverforge_py"
crate-type = ["cdylib", "rlib"]
[package.metadata.solverforge]
version = "0.19.4"
[dependencies]
indexmap = "2.12.1"
once_cell = "1.21.3"
parking_lot = "0.12.5"
pyo3 = "0.27.1"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
smallvec = "1.15.1"
thiserror = "2.0.18"
tokio = { version = "1.48.0", default-features = false, features = ["sync"] }
toml = "0.9.8"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
solverforge-config = { version = "=0.19.4" }
solverforge-bridge = { version = "=0.19.4" }
solverforge-console = { version = "=0.19.4", features = ["verbose-logging"] }
solverforge-core = { version = "=0.19.4" }
solverforge-scoring = { version = "=0.19.4" }
solverforge-solver = { version = "=0.19.4" }
solverforge-ui = { version = "=0.7.0", default-features = false }
[dev-dependencies]
pretty_assertions = "1.4.1"
[features]
extension-module = ["pyo3/extension-module"]
[profile.dev]
opt-level = 3