mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
The tests all pass when using the bottom of the new version ranges on Windows. The unicase dependency's lower bound is limited by rust-ini even after using the latest master branch versions of esplugin, libloadorder and loot-condition-interpreter. The proc-macro2 and quote dependencies' lower bounds are limited by pyo3's dependency tree. The nodejs wrapper's dependencies haven't been touched.
23 lines
519 B
TOML
23 lines
519 B
TOML
[package]
|
|
name = "libloot-python"
|
|
description = "An experimental Python wrapper around libloot."
|
|
publish = false
|
|
version.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "loot"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
libloot = { path = ".." }
|
|
libloot-ffi-errors = { path = "../ffi-errors" }
|
|
pyo3 = ">= 0.23.3, < 0.26"
|
|
pyo3-log = "0.12"
|
|
|
|
[lints]
|
|
workspace = true
|