diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-09 19:16:55 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-09 19:16:55 +0100 |
commit | 184328ebcf100496d8b6df0cc570c773a2203a2e (patch) | |
tree | 11170ed6cfb1c91cd3a8fa5cb3815d4e4978880d /Cargo.toml | |
parent | 6e798b90f590e21bb68535f0431fc547e5e2390c (diff) | |
download | aerogramme-184328ebcf100496d8b6df0cc570c773a2203a2e.tar.gz aerogramme-184328ebcf100496d8b6df0cc570c773a2203a2e.zip |
Optional Parameters with the SELECT/EXAMINE Commands
See: https://datatracker.ietf.org/doc/html/rfc4466#section-2.4
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -64,8 +64,10 @@ imap-flow = { git = "https://github.com/duesee/imap-flow.git", rev = "e45ce7bb6a [dev-dependencies] [patch.crates-io] -imap-types = { git = "https://github.com/duesee/imap-codec", branch = "v2" } -imap-codec = { git = "https://github.com/duesee/imap-codec", branch = "v2" } +#imap-types = { git = "https://github.com/duesee/imap-codec", branch = "v2" } +#imap-codec = { git = "https://github.com/duesee/imap-codec", branch = "v2" } +imap-types = { path = "../../imap-codec/imap-types" } +imap-codec = { path = "../../imap-codec/imap-codec" } [[test]] name = "behavior" |