sapling/eden/fs/cli_rs/edenfs-client
Dimitris Iliopoulos 12df87352f upgrade packages from toml-5 (0.5.8 fork) -> toml (0.7.3)
Summary:
The fixes bellow are because of one of 4 reasons:
1. [`toml::from_slice`](https://docs.rs/toml/0.5.8/toml/de/fn.from_slice.html) and [`toml::to_vec`](https://docs.rs/toml/0.5.8/toml/ser/fn.to_vec.html)  have been removed and replaced in the current version by [`toml::from_str`](https://docs.rs/toml/0.7.3/toml/fn.from_str.html) and [`toml::to_string`](https://docs.rs/toml/0.7.3/toml/fn.to_string.html)
2. [`toml::Spanned::span`](https://docs.rs/toml/0.7.3/toml/struct.Spanned.html#method.span) now returns a `Range<usize>` and not a `(usize, usize)` like it used to ([here](https://docs.rs/toml/0.5.8/toml/struct.Spanned.html#method.span))
3. The internal representation for parsed TOML via [`toml_edit`](https://docs.rs/toml_edit/latest/toml_edit/) uses `"` instead of `'` for representing string values
4. TOML parsing errors are now multi-line errors and need to be accounted for in tests

Reviewed By: zertosh, shayne-fletcher

Differential Revision: D45896591

fbshipit-source-id: 403790674c7449da9f7322d69ec3030369310aab
2023-05-17 18:52:14 -07:00
..
src Fix Rust CLI unused warnings on Windows 2023-04-17 16:59:10 -07:00
Cargo.toml upgrade packages from toml-5 (0.5.8 fork) -> toml (0.7.3) 2023-05-17 18:52:14 -07:00