comparison Cargo.toml @ 26:0feab4f4c2ce

Relax version requirements and update MSRV The MSRV was accidentally increased without documentation. Increase itself is fine since it satisfies "latest stable Debian" condition but given there are soundness issues this relaxes the version requirements to work on 1.48 and also documents it.
author Martin Habovstiak <martin.habovstiak@gmail.com>
date Fri, 28 Feb 2025 23:10:11 +0100
parents 8e20daee41ed
children 85b0f4a7303d
comparison
equal deleted inserted replaced
25:8e20daee41ed 26:0feab4f4c2ce
25 # This as a feature is not considered a public interface! 25 # This as a feature is not considered a public interface!
26 libsystemd = { version = ">= 0.3.0, < 0.8.0", optional = true } 26 libsystemd = { version = ">= 0.3.0, < 0.8.0", optional = true }
27 27
28 [dependencies] 28 [dependencies]
29 thiserror = "1.0.21" 29 thiserror = "1.0.21"
30 serde_crate = { package = "serde", version = "1.0.116", optional = true, features = ["derive"] } 30 serde_crate = { package = "serde", version = "1.0.0", optional = true, features = ["derive"] }
31 serde_str_helpers = { version = "0.1.2", optional = true } 31 serde_str_helpers = { version = "0.1.1", optional = true }
32 parse_arg = { version = "0.1.4", optional = true } 32 parse_arg = { version = "0.1.4", optional = true }
33 once_cell = "1.13.0" 33 once_cell = "1.13.0"
34 tokio = { package = "tokio", version = "1.0.0", optional = true, features = ["net"] } 34 tokio = { package = "tokio", version = "1.0.0", optional = true, features = ["net"] }
35 tokio_0_2 = { package = "tokio", version = "0.2", optional = true, features = ["tcp", "dns"] } 35 tokio_0_2 = { package = "tokio", version = "0.2", optional = true, features = ["tcp", "dns"] }
36 tokio_0_3 = { package = "tokio", version = "0.3", optional = true, features = ["net"] } 36 tokio_0_3 = { package = "tokio", version = "0.3", optional = true, features = ["net"] }
37 async-std = { version = "1.7.0", optional = true } 37 async-std = { version = "1.0.0", optional = true }
38 libc = "0.2.155" 38 libc = "0.2.155"