Compare commits
No commits in common. "847fbd62135bef99b5d171506c5d402733feb7bf" and "5f1d45ca0c685c873d3c67052f5dab5980b983b6" have entirely different histories.
847fbd6213
...
5f1d45ca0c
31 changed files with 1390 additions and 1409 deletions
|
@ -1,9 +0,0 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
indent_style = tab
|
||||
indent_size = tab
|
||||
trim_trailing_whitespace = true
|
|
@ -1 +0,0 @@
|
|||
hard_tabs = true
|
|
@ -10,10 +10,6 @@ rust:
|
|||
- "1.46.0"
|
||||
- "1.47.0"
|
||||
- "1.48.0"
|
||||
- "1.49.0"
|
||||
- "1.50.0"
|
||||
- "1.51.0"
|
||||
- "1.52.1"
|
||||
- "stable"
|
||||
- "beta"
|
||||
- "nightly"
|
||||
|
|
|
@ -17,8 +17,3 @@ Read the documentation on [docs.rs](https://docs.rs/opensmtpd/).
|
|||
# Requirements
|
||||
|
||||
Rust 1.43 or newer.
|
||||
|
||||
|
||||
# Status
|
||||
|
||||
Abandoned (at least temporarily).
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "opensmtpd_derive"
|
||||
version = "0.4.1"
|
||||
version = "0.4.0"
|
||||
authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
|
||||
edition = "2018"
|
||||
description = "Interface for OpenSMTPD filters"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "opensmtpd"
|
||||
version = "0.4.1"
|
||||
version = "0.4.0"
|
||||
authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
|
||||
edition = "2018"
|
||||
description = "Interface for OpenSMTPD filters"
|
||||
|
@ -18,7 +18,7 @@ opensmtpd_derive = { version = "0.4", path = "../opensmtpd-derive" }
|
|||
pretty-hex = "0.2"
|
||||
|
||||
[dev-dependencies]
|
||||
simplelog = "0.10"
|
||||
simplelog = "0.9"
|
||||
|
||||
[[example]]
|
||||
name = "counter"
|
||||
|
|
Reference in a new issue