Changes in this version:
-
Add
==
and!=
operators for equality and inequality (by @frectonz)For example:
> 2 metres == 200 cm true > 4 kg == 2 lbs false
-
The fend CLI now uses
native-tls
by default, instead ofrustls
. On Windows this uses SChannel (via theschannel
crate), on macOS it uses Secure Transport via thesecurity-framework
crate, and on Linux it links to OpenSSL with theopenssl
crate. You can continue usingrustls
by compiling with the--no-default-features --features rustls
flags. See the CLI'sCargo.toml
for further details.