Rename workspace dirs to their actual crate names

Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
main
Manos Pitsidianakis 2024-02-13 09:48:54 +02:00
parent acfa9212f3
commit 393446ea61
Signed by: Manos Pitsidianakis
GPG Key ID: 7729C7707F7E09D0
136 changed files with 14 additions and 13 deletions

View File

@ -1,12 +1,13 @@
[workspace]
resolver = "2"
members = [
"archive-http",
"cli",
"core",
"mailpot",
"mailpot-archives",
"mailpot-cli",
"mailpot-http",
"mailpot-tests",
"rest-http",
"web",
"mailpot-web",
]
[profile.release]

View File

@ -6,7 +6,7 @@ DJHTMLBIN = djhtml
BLACKBIN = black
PRINTF = /usr/bin/printf
HTML_FILES := $(shell find web/src/templates -type f -print0 | tr '\0' ' ')
HTML_FILES := $(shell find mailpot-web/src/templates -type f -print0 | tr '\0' ' ')
PY_FILES := $(shell find . -type f -name '*.py' -print0 | tr '\0' ' ')
.PHONY: check

View File

@ -18,7 +18,7 @@ path = "src/main.rs"
[dependencies]
chrono = { version = "^0.4" }
lazy_static = "^1.4"
mailpot = { version = "^0.1", path = "../core" }
mailpot = { version = "^0.1", path = "../mailpot" }
minijinja = { version = "0.31.0", features = ["source", ] }
percent-encoding = { version = "^2.1", optional = true }
serde = { version = "^1", features = ["derive", ] }

View File

@ -20,7 +20,7 @@ doc-scrape-examples = true
base64 = { version = "0.21" }
clap = { version = "^4.2", default-features = false, features = ["std", "derive", "cargo", "unicode", "help", "usage", "error-context", "suggestions"] }
log = "0.4"
mailpot = { version = "^0.1", path = "../core" }
mailpot = { version = "^0.1", path = "../mailpot" }
serde = { version = "^1", features = ["derive", ] }
serde_json = "^1"
stderrlog = { version = "^0.6" }
@ -35,5 +35,5 @@ tempfile = { version = "3.9" }
[build-dependencies]
clap = { version = "^4.2", default-features = false, features = ["std", "derive", "cargo", "unicode", "wrap_help", "help", "usage", "error-context", "suggestions"] }
clap_mangen = "0.2.10"
mailpot = { version = "^0.1", path = "../core" }
mailpot = { version = "^0.1", path = "../mailpot" }
stderrlog = { version = "^0.6" }

View File

@ -25,8 +25,8 @@ config = "0.13"
http = "0.2"
lazy_static = "1.4"
log = "0.4"
mailpot = { version = "^0.1", path = "../core" }
mailpot-web = { version = "^0.1", path = "../web" }
mailpot = { version = "^0.1", path = "../mailpot" }
mailpot-web = { version = "^0.1", path = "../mailpot-web" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
stderrlog = { version = "^0.6" }

View File

@ -13,7 +13,7 @@ publish = false
assert_cmd = "2"
log = "0.4"
mailin-embedded = { version = "0.7", features = ["rtls"] }
mailpot = { version = "^0.1", path = "../core" }
mailpot = { version = "^0.1", path = "../mailpot" }
predicates = "3"
stderrlog = { version = "^0.6" }
tempfile = { version = "3.9" }

View File

@ -33,7 +33,7 @@ eyre = { version = "0.6" }
http = "0.2"
indexmap = { version = "1.9" }
lazy_static = "^1.4"
mailpot = { version = "^0.1", path = "../core" }
mailpot = { version = "^0.1", path = "../mailpot" }
minijinja = { version = "0.31.0", features = ["source", ] }
percent-encoding = { version = "^2.1" }
rand = { version = "^0.8", features = ["min_const_gen"] }

Some files were not shown because too many files have changed in this diff Show More