Compare commits

..

3 Commits

Author SHA1 Message Date
90f1515166
[release] logtimes v1.0.12 2024-09-04 16:47:18 +02:00
fb4d9ee3f4
[chg] only 3 decimal places (save space) 2024-09-04 16:47:01 +02:00
2597cc87b8
[deps] cargo update
Updating cc v1.1.15 -> v1.1.16
2024-09-04 16:45:45 +02:00
3 changed files with 5 additions and 5 deletions

6
Cargo.lock generated
View File

@ -31,9 +31,9 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
[[package]]
name = "cc"
version = "1.1.15"
version = "1.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6"
checksum = "e9d013ecb737093c0e86b151a7b837993cf9ec6c502946cfb44bedc392421e0b"
dependencies = [
"shlex",
]
@ -108,7 +108,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]]
name = "logtimes"
version = "1.0.11"
version = "1.0.12"
dependencies = [
"chrono",
]

View File

@ -1,6 +1,6 @@
[package]
name = "logtimes"
version = "1.0.11"
version = "1.0.12"
authors = ["Paul Schulze <p.schulze@avm.de>"]
edition = "2021"

View File

@ -6,7 +6,7 @@ use std::{
use chrono::prelude::*;
const TIME_FORMAT: &str = "%H:%M:%S%.6f";
const TIME_FORMAT: &str = "%H:%M:%S%.3f";
type LogtimesResult = Result<(), IoError>;