core: fix melib dependency features

newstuff
Manos Pitsidianakis 2022-09-19 15:29:41 +03:00
parent b97ab650ce
commit c2a2062637
5 changed files with 20 additions and 20 deletions

1
Cargo.lock generated
View File

@ -1117,6 +1117,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "melib"
version = "0.7.2"
source = "git+https://github.com/meli/meli?rev=b87d54ea3f#b87d54ea3f3f077b6330e798263be6a3d33b3b9c"
dependencies = [
"async-stream",
"base64",

View File

@ -1,9 +1,9 @@
[workspace]
members = [
"core",
"cli",
"rest-http",
"archive-http",
"cli",
"core",
"rest-http",
]
[patch.crates-io]

View File

@ -7,7 +7,7 @@ license = "LICENSE"
readme = "README.md"
description = "mailing list manager"
repository = "https://github.com/meli/mailpot"
keywords = ["mail", "mailing-lists" ]
keywords = ["mail", "mailing-lists"]
categories = ["email"]
default-run = "mpot-archives"
@ -16,8 +16,8 @@ name = "mpot-archives"
path = "src/main.rs"
[dependencies]
mailpot = { version = "0.1.0", path = "../core" }
tokio = { version = "1", features = ["full"] }
askama = "0.8"
warp = "0.3"
mailpot = { version = "0.1.0", path = "../core" }
percent-encoding = "2.1"
tokio = { version = "1", features = ["full"] }
warp = "0.3"

View File

@ -7,7 +7,7 @@ license = "LICENSE"
readme = "README.md"
description = "mailing list manager"
repository = "https://github.com/meli/mailpot"
keywords = ["mail", "mailing-lists" ]
keywords = ["mail", "mailing-lists"]
categories = ["email"]
default-run = "mpot"
@ -16,7 +16,7 @@ name = "mpot"
path = "src/main.rs"
[dependencies]
mailpot = { version = "0.1.0", path = "../core" }
structopt = "0.3.16"
stderrlog = "^0.5"
log = "0.4"
mailpot = { version = "0.1.0", path = "../core" }
stderrlog = "^0.5"
structopt = "0.3.16"

View File

@ -7,23 +7,22 @@ license = "LICENSE"
readme = "README.md"
description = "mailing list manager"
repository = "https://github.com/meli/mailpot"
keywords = ["mail", "mailing-lists" ]
keywords = ["mail", "mailing-lists"]
categories = ["email"]
[dependencies]
anyhow = "1.0.58"
chrono = { version = "^0.4", features = ["serde", ] }
error-chain = { version = "0.12.4", default-features = false }
anyhow = "1.0.58"
#melib = { version = "*", default-features = false, features = ["smtp", "unicode_algorithms"], path="../../meli/melib", branch = "master" }
melib = { version = "*", default-features = false, features = ["smtp", "unicode_algorithms"], git="https://github.com/meli/meli", branch = "master" }
rusqlite = {version = "^0.27", features = ["bundled"] }
serde = { version = "^1", features = ["derive", ]}
log = "0.4"
melib = { version = "*", default-features = false, features = ["smtp", "unicode_algorithms", "maildir_backend"], git = "https://github.com/meli/meli", rev = "b87d54ea3f" }
rusqlite = { version = "^0.27", features = ["bundled"] }
serde = { version = "^1", features = ["derive", ] }
serde_json = "^1"
toml = "^0.5"
log = "0.4"
xdg = "2.4.1"
[dev-dependencies]
mailin-embedded = { version = "0.7", features = ["rtls"] }
tempfile = "3.3.0"
stderrlog = "^0.5"
tempfile = "3.3.0"