-
-
Notifications
You must be signed in to change notification settings - Fork 5
Description
domain crate dependency is specified in simple mode, but it seems latest version, with which dnsi can be compiled, is 0.10.1. Later version even in 0.10 main version are not compatible. 0.10.4 does not compile in rustc 1.89.0 (29483883e 2025-08-04) (Fedora 1.89.0-2.fc41). 0.11.0 does not work either.
IMO until proper fix allows compilation with any later domain crate, Cargo.toml should contain version specification like:
domain = { version = ">=0.10.0, <0.10.2", features = ["resolv", "unstable-client-transport"]}
or
domain = { version = "=0.10.1", features = ["resolv", "unstable-client-transport"]}
Even current main branch does not compile to me after cargo update. Difference between 0.10.4 and 0.11 does not seem to be relevant. At least Cargo.toml version specification should be updated.