You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

vrp-cli

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vrp-cli - pypi Package Compare versions

Comparing version
1.19.2
to
1.21.0
+7
vrp_cli/ffi.py
# auto-generated file
import _cffi_backend
ffi = _cffi_backend.FFI('ffi',
_version = 0x2601,
_types = b'',
)

Sorry, the diff of this file is not supported yet

+5
-4
Metadata-Version: 2.1
Name: vrp-cli
Version: 1.19.2
Version: 1.21.0
Summary: A command line interface for VRP solver

@@ -18,3 +18,3 @@ Keywords: vrp,optimization

[![codecov](https://codecov.io/gh/reinterpretcat/vrp/branch/master/graph/badge.svg)](https://codecov.io/gh/reinterpretcat/vrp)
[![dependency status](https://deps.rs/crate/vrp-cli/1.19.2/status.svg)](https://deps.rs/crate/vrp-cli/1.19.2)
[![dependency status](https://deps.rs/crate/vrp-cli/1.21.0/status.svg)](https://deps.rs/crate/vrp-cli/1.21.0)
[![DOI](https://zenodo.org/badge/238436117.svg)](https://zenodo.org/badge/latestdoi/238436117)

@@ -69,3 +69,4 @@

Alternatively, you can use [maturin](https://github.com/PyO3/maturin) tool to build solver locally.
Alternatively, you can use [maturin](https://github.com/PyO3/maturin) tool to build solver locally. You need to enable
`py_bindings` feature which is not enabled by default.

@@ -84,3 +85,3 @@ You can find extra information in [python example section](https://reinterpretcat.github.io/vrp/examples/interop/python.html)

```bash
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.19.2
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.21.0
```

@@ -87,0 +88,0 @@

+6
-5

@@ -1,5 +0,6 @@

vrp_cli-1.19.2.dist-info/METADATA,sha256=YbSTqXvLTQ9uArZmteKUFL9rFefhijanaCI1jkA7aSw,5487
vrp_cli-1.19.2.dist-info/WHEEL,sha256=iFhOWLYhfvRU-bcbLOwtptw9fp0YZM7_nY3Id8iNJ_M,110
vrp_cli/__init__.py,sha256=Z8dz7qSE_Ui3whk3hFiots6lbcobVs6gTz3y_Q5O2LY,111
vrp_cli/vrp_cli.cpython-310-x86_64-linux-gnu.so,sha256=NHiw_Tq6CTDyz-gIC79heP2MWia771OnpZcXyDqrPuo,3795384
vrp_cli-1.19.2.dist-info/RECORD,,
vrp_cli-1.21.0.dist-info/METADATA,sha256=CdXYVmW3r2XiUJi8_tUp3Hp0G4I9e0KoUDo5_5PZP3c,5561
vrp_cli-1.21.0.dist-info/WHEEL,sha256=wpr-Ugrj88HZdO9kg0Hahdl5uKr-qvH9Equf4VSPOH4,107
vrp_cli/__init__.py,sha256=hsVZR7agC05B2LKh1o3-Xj95Uziyiy2NP0_kS0aEM4k,136
vrp_cli/ffi.py,sha256=l_i047dsYP8cOaqoz7oL9iajRvokRLdvFCPAGLcEz-U,118
vrp_cli/native.so,sha256=9qVQcaDX9aNQ2p__VEzEei4UNMyH1w2bhawsvpHCkeo,3836088
vrp_cli-1.21.0.dist-info/RECORD,,

@@ -1,5 +0,7 @@

from .vrp_cli import *
__all__ = ["lib", "ffi"]
__doc__ = vrp_cli.__doc__
if hasattr(vrp_cli, "__all__"):
__all__ = vrp_cli.__all__
import os
from .ffi import ffi
lib = ffi.dlopen(os.path.join(os.path.dirname(__file__), 'native.so'))
del os
+2
-2
Wheel-Version: 1.0
Generator: maturin (0.14.15)
Generator: maturin (0.14.17)
Root-Is-Purelib: false
Tag: cp310-cp310-manylinux_2_31_x86_64
Tag: py3-none-manylinux_2_31_x86_64

Sorry, the diff of this file is not supported yet