Skip to content

Commit ec5f2f1

Browse files
authored
Initial commit (#64)
1 parent 4570794 commit ec5f2f1

21 files changed

+286
-1152
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 72 deletions
This file was deleted.
Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
name: spelling
22

3-
on:
4-
push:
5-
branches:
6-
- "master"
7-
pull_request:
8-
branches:
9-
- "master"
3+
on: [push]
104

115
jobs:
126
typos:
13-
name: spelling
147
runs-on: ubuntu-latest
158
steps:
16-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1710
- uses: crate-ci/typos@master
1811
with:
1912
files: .

.gitignore

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
.vscode/
2-
/target
3-
4-
51
# Added by cargo
62
#
73
# already existing elements were commented out
84

9-
#/target
5+
/target
106
/Cargo.lock

Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
[workspace]
22
members = ["crates/*"]
3+
resolver = "2"
4+
5+
[workspace.package]
6+
edition = "2024"
7+
rust-version = "1.85"
8+
9+
[workspace.lints.clippy]
10+
pedantic = "warn"

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
[![tests](https://github.com/cnpryer/solver/actions/workflows/ci.yaml/badge.svg)](https://github.com/cnpryer/solver/actions/workflows/ci.yaml)
2-
31
# solver
42

5-
A fast solver library for Rust.
3+
Note that `solver` is currently only intended to be used for VRP. `solver-vrp` is inspired by [`nextroute`](https://github.com/nextmv-io/nextroute).
64

75
# Goals
86

97
- Fast
108
- Compact
119
- Expressive
12-
- Domain-Driven

crates/solver-graph/Cargo.toml

Lines changed: 0 additions & 18 deletions
This file was deleted.

crates/solver-graph/README.md

Lines changed: 0 additions & 34 deletions
This file was deleted.
-71.1 KB
Binary file not shown.

crates/solver-graph/src/helpers.rs

Lines changed: 0 additions & 121 deletions
This file was deleted.

crates/solver-graph/src/lib.rs

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)