Compare commits
10 commits
5f1d45ca0c
...
847fbd6213
Author | SHA1 | Date | |
---|---|---|---|
|
847fbd6213 | ||
|
d9b89beb3f | ||
|
28e93f0353 | ||
|
a28b8846a2 | ||
|
e0ab5ca6fa | ||
|
20493e9dec | ||
|
e8f99f957d | ||
|
0fe864e6db | ||
|
e83af3d3e5 | ||
|
ecf0ca1191 |
31 changed files with 1409 additions and 1390 deletions
9
.editorconfig
Normal file
9
.editorconfig
Normal file
|
@ -0,0 +1,9 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
indent_style = tab
|
||||
indent_size = tab
|
||||
trim_trailing_whitespace = true
|
1
.rustfmt.toml
Normal file
1
.rustfmt.toml
Normal file
|
@ -0,0 +1 @@
|
|||
hard_tabs = true
|
|
@ -10,6 +10,10 @@ 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,3 +17,8 @@ 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.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
|
||||
edition = "2018"
|
||||
description = "Interface for OpenSMTPD filters"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "opensmtpd"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
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.9"
|
||||
simplelog = "0.10"
|
||||
|
||||
[[example]]
|
||||
name = "counter"
|
||||
|
|
Reference in a new issue