Compare commits

...

10 commits

Author SHA1 Message Date
Rodolphe Bréard
847fbd6213 put project to sleep 2022-01-12 20:00:53 +01:00
Rodolphe Bréard
d9b89beb3f Merge branch 'main' of github.com:breard-r/rust-opensmtpd 2022-01-12 19:59:30 +01:00
Rodolphe Bréard
28e93f0353 Update the Travis-CI configuration 2021-05-10 18:59:37 +02:00
Rodolphe Bréard
a28b8846a2
Merge pull request #5 from breard-r/dependabot/add-v2-config-file
Upgrade to GitHub-native Dependabot
2021-04-30 19:02:59 +02:00
Rodolphe Bréard
e0ab5ca6fa
Merge pull request #4 from breard-r/dependabot/cargo/simplelog-0.10
Update simplelog requirement from 0.9 to 0.10
2021-04-30 19:02:47 +02:00
dependabot-preview[bot]
20493e9dec
Upgrade to GitHub-native Dependabot 2021-04-29 20:13:35 +00:00
dependabot-preview[bot]
e8f99f957d
Update simplelog requirement from 0.9 to 0.10
Updates the requirements on [simplelog](https://github.com/drakulix/simplelog.rs) to permit the latest version.
- [Release notes](https://github.com/drakulix/simplelog.rs/releases)
- [Changelog](https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/drakulix/simplelog.rs/compare/v0.9.0...v0.10.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-29 04:26:16 +00:00
Rodolphe Bréard
0fe864e6db Replace the lasts space indents with tabs 2021-02-28 14:10:12 +01:00
Rodolphe Bréard
e83af3d3e5 Switch to tab indentation 2021-02-28 13:56:40 +01:00
Rodolphe Bréard
ecf0ca1191 Rust-OpenSMTPD v0.4.1 2020-12-21 15:43:56 +01:00
31 changed files with 1409 additions and 1390 deletions

9
.editorconfig Normal file
View 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
View file

@ -0,0 +1 @@
hard_tabs = true

View file

@ -10,6 +10,10 @@ rust:
- "1.46.0" - "1.46.0"
- "1.47.0" - "1.47.0"
- "1.48.0" - "1.48.0"
- "1.49.0"
- "1.50.0"
- "1.51.0"
- "1.52.1"
- "stable" - "stable"
- "beta" - "beta"
- "nightly" - "nightly"

View file

@ -17,3 +17,8 @@ Read the documentation on [docs.rs](https://docs.rs/opensmtpd/).
# Requirements # Requirements
Rust 1.43 or newer. Rust 1.43 or newer.
# Status
Abandoned (at least temporarily).

View file

@ -1,6 +1,6 @@
[package] [package]
name = "opensmtpd_derive" name = "opensmtpd_derive"
version = "0.4.0" version = "0.4.1"
authors = ["Rodolphe Bréard <rodolphe@what.tf>"] authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
edition = "2018" edition = "2018"
description = "Interface for OpenSMTPD filters" description = "Interface for OpenSMTPD filters"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "opensmtpd" name = "opensmtpd"
version = "0.4.0" version = "0.4.1"
authors = ["Rodolphe Bréard <rodolphe@what.tf>"] authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
edition = "2018" edition = "2018"
description = "Interface for OpenSMTPD filters" description = "Interface for OpenSMTPD filters"
@ -18,7 +18,7 @@ opensmtpd_derive = { version = "0.4", path = "../opensmtpd-derive" }
pretty-hex = "0.2" pretty-hex = "0.2"
[dev-dependencies] [dev-dependencies]
simplelog = "0.9" simplelog = "0.10"
[[example]] [[example]]
name = "counter" name = "counter"