Skip to content

Commit

Permalink
rename 'planning' to 'scheduling'
Browse files Browse the repository at this point in the history
  • Loading branch information
Shrecknt committed Feb 6, 2024
1 parent 22f6417 commit ea869c6
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 30 deletions.
22 changes: 11 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'planning'",
"name": "Debug unit tests in library 'scheduling'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=planning"
"--package=scheduling"
],
"filter": {
"name": "planning",
"name": "scheduling",
"kind": "lib"
}
},
Expand All @@ -139,15 +139,15 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'planning'",
"name": "Debug executable 'scheduling'",
"cargo": {
"args": [
"build",
"--bin=planning",
"--package=planning"
"--bin=scheduling",
"--package=scheduling"
],
"filter": {
"name": "planning",
"name": "scheduling",
"kind": "bin"
}
},
Expand All @@ -157,16 +157,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'planning'",
"name": "Debug unit tests in executable 'scheduling'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=planning",
"--package=planning"
"--bin=scheduling",
"--package=scheduling"
],
"filter": {
"name": "planning",
"name": "scheduling",
"kind": "bin"
}
},
Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ database = { version = "0.1.0", path = "crates/database" }
common = { version = "0.1.0", path = "crates/common" }
io = { version = "0.1.0", path = "crates/io" }
web = { version = "0.1.0", path = "crates/web" }
scheduling = { version = "0.1.0", path = "crates/scheduling" }
axum = { version = "0.6.20", features = ["macros", "ws", "headers"] }
bcrypt = "0.15.0"
boringtun = "0.6.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "planning"
name = "scheduling"
version = "0.1.0"
edition = "2021"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use database::DatabaseConnection;
use planning::ScanningMode;
use scheduling::ScanningMode;

macro_rules! test_modes {
($($mode:expr),*) => {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ea869c6

Please sign in to comment.