Skip to content

Commit 1a0b562

Browse files
authored
Remove unused use of rmp_serde from suggest (#7092)
1 parent 9f55079 commit 1a0b562

File tree

7 files changed

+0
-153
lines changed

7 files changed

+0
-153
lines changed

Cargo.lock

Lines changed: 0 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DEPENDENCIES.md

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ the details of which are reproduced below.
2424
* [MIT License: nom](#mit-license-nom)
2525
* [MIT License: openssl-sys](#mit-license-openssl-sys)
2626
* [MIT License: ordered-float](#mit-license-ordered-float)
27-
* [MIT License: rmp, rmp-serde](#mit-license-rmp-rmp-serde)
2827
* [MIT License: schannel](#mit-license-schannel)
2928
* [MIT License: scroll](#mit-license-scroll)
3029
* [MIT License: scroll_derive](#mit-license-scroll_derive)
@@ -539,7 +538,6 @@ The following text applies to code linked from these dependencies:
539538
[openssl](https://github.com/sfackler/rust-openssl),
540539
[parking_lot](https://github.com/Amanieu/parking_lot),
541540
[parking_lot_core](https://github.com/Amanieu/parking_lot),
542-
[paste](https://github.com/dtolnay/paste),
543541
[percent-encoding](https://github.com/servo/rust-url/),
544542
[pin-project-lite](https://github.com/taiki-e/pin-project-lite),
545543
[pin-utils](https://github.com/rust-lang-nursery/pin-utils),
@@ -1362,37 +1360,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
13621360
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
13631361
DEALINGS IN THE SOFTWARE.
13641362
1365-
```
1366-
-------------
1367-
## MIT License: rmp, rmp-serde
1368-
1369-
The following text applies to code linked from these dependencies:
1370-
[rmp-serde](https://github.com/3Hren/msgpack-rust),
1371-
[rmp](https://github.com/3Hren/msgpack-rust)
1372-
1373-
```
1374-
MIT License
1375-
1376-
Copyright (c) 2017 Evgeny Safronov
1377-
1378-
Permission is hereby granted, free of charge, to any person obtaining a copy
1379-
of this software and associated documentation files (the "Software"), to deal
1380-
in the Software without restriction, including without limitation the rights
1381-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1382-
copies of the Software, and to permit persons to whom the Software is
1383-
furnished to do so, subject to the following conditions:
1384-
1385-
The above copyright notice and this permission notice shall be included in all
1386-
copies or substantial portions of the Software.
1387-
1388-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1389-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1390-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1391-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1392-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1393-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1394-
SOFTWARE.
1395-
13961363
```
13971364
-------------
13981365
## MIT License: schannel

components/suggest/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ exclude = ["/android", "/ios"]
99

1010
[dependencies]
1111
anyhow = "1.0"
12-
rmp-serde = "1.3"
1312
chrono = "0.4"
1413
extend = "1.1"
1514
icu_casemap = "2"

components/suggest/src/error.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,6 @@ impl From<serde_json::Error> for Error {
5757
}
5858
}
5959

60-
impl From<rmp_serde::decode::Error> for Error {
61-
fn from(e: rmp_serde::decode::Error) -> Self {
62-
Self::Serialization(e.to_string())
63-
}
64-
}
65-
66-
impl From<rmp_serde::encode::Error> for Error {
67-
fn from(e: rmp_serde::encode::Error) -> Self {
68-
Self::Serialization(e.to_string())
69-
}
70-
}
71-
7260
#[extend::ext(name=RusqliteResultExt)]
7361
pub impl<T> Result<T, rusqlite::Error> {
7462
// Convert an rusqlite::Error to our error type, with a context value

megazords/full/DEPENDENCIES.md

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ the details of which are reproduced below.
1818
* [MIT License: libsqlite3-sys, rusqlite](#mit-license-libsqlite3-sys-rusqlite)
1919
* [MIT License: nom](#mit-license-nom)
2020
* [MIT License: ordered-float](#mit-license-ordered-float)
21-
* [MIT License: rmp, rmp-serde](#mit-license-rmp-rmp-serde)
2221
* [MIT License: scroll](#mit-license-scroll)
2322
* [MIT License: scroll_derive](#mit-license-scroll_derive)
2423
* [MIT License: sharded-slab](#mit-license-sharded-slab)
@@ -495,7 +494,6 @@ The following text applies to code linked from these dependencies:
495494
[once_cell](https://github.com/matklad/once_cell),
496495
[parking_lot](https://github.com/Amanieu/parking_lot),
497496
[parking_lot_core](https://github.com/Amanieu/parking_lot),
498-
[paste](https://github.com/dtolnay/paste),
499497
[percent-encoding](https://github.com/servo/rust-url/),
500498
[pin-project-lite](https://github.com/taiki-e/pin-project-lite),
501499
[pkg-config](https://github.com/rust-lang/pkg-config-rs),
@@ -1121,37 +1119,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
11211119
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
11221120
DEALINGS IN THE SOFTWARE.
11231121
1124-
```
1125-
-------------
1126-
## MIT License: rmp, rmp-serde
1127-
1128-
The following text applies to code linked from these dependencies:
1129-
[rmp-serde](https://github.com/3Hren/msgpack-rust),
1130-
[rmp](https://github.com/3Hren/msgpack-rust)
1131-
1132-
```
1133-
MIT License
1134-
1135-
Copyright (c) 2017 Evgeny Safronov
1136-
1137-
Permission is hereby granted, free of charge, to any person obtaining a copy
1138-
of this software and associated documentation files (the "Software"), to deal
1139-
in the Software without restriction, including without limitation the rights
1140-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1141-
copies of the Software, and to permit persons to whom the Software is
1142-
furnished to do so, subject to the following conditions:
1143-
1144-
The above copyright notice and this permission notice shall be included in all
1145-
copies or substantial portions of the Software.
1146-
1147-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1148-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1149-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1150-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1151-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1152-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1153-
SOFTWARE.
1154-
11551122
```
11561123
-------------
11571124
## MIT License: scroll

megazords/full/android/dependency-licenses.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,6 @@ the details of which are reproduced below.
304304
<name>Apache License 2.0: parking_lot_core</name>
305305
<url>https://github.com/Amanieu/parking_lot/blob/master/LICENSE-APACHE</url>
306306
</license>
307-
<license>
308-
<name>Apache License 2.0: paste</name>
309-
<url>https://github.com/dtolnay/paste/blob/master/LICENSE-APACHE</url>
310-
</license>
311307
<license>
312308
<name>Apache License 2.0: percent-encoding</name>
313309
<url>https://github.com/servo/rust-url/blob//main/LICENSE-APACHE</url>
@@ -584,14 +580,6 @@ the details of which are reproduced below.
584580
<name>MIT License: ordered-float</name>
585581
<url>https://github.com/reem/rust-ordered-float/blob/master/LICENSE-MIT</url>
586582
</license>
587-
<license>
588-
<name>MIT License: rmp</name>
589-
<url>https://github.com/3Hren/msgpack-rust/blob/master/LICENSE</url>
590-
</license>
591-
<license>
592-
<name>MIT License: rmp-serde</name>
593-
<url>https://github.com/3Hren/msgpack-rust/blob/master/LICENSE</url>
594-
</license>
595583
<license>
596584
<name>MIT License: scroll</name>
597585
<url>https://github.com/m4b/scroll/blob/master/LICENSE</url>

megazords/ios-rust/DEPENDENCIES.md

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ the details of which are reproduced below.
2323
* [MIT License: mio](#mit-license-mio)
2424
* [MIT License: nom](#mit-license-nom)
2525
* [MIT License: ordered-float](#mit-license-ordered-float)
26-
* [MIT License: rmp, rmp-serde](#mit-license-rmp-rmp-serde)
2726
* [MIT License: scroll](#mit-license-scroll)
2827
* [MIT License: scroll_derive](#mit-license-scroll_derive)
2928
* [MIT License: sharded-slab](#mit-license-sharded-slab)
@@ -524,7 +523,6 @@ The following text applies to code linked from these dependencies:
524523
[once_cell](https://github.com/matklad/once_cell),
525524
[parking_lot](https://github.com/Amanieu/parking_lot),
526525
[parking_lot_core](https://github.com/Amanieu/parking_lot),
527-
[paste](https://github.com/dtolnay/paste),
528526
[percent-encoding](https://github.com/servo/rust-url/),
529527
[pin-project-lite](https://github.com/taiki-e/pin-project-lite),
530528
[pin-utils](https://github.com/rust-lang-nursery/pin-utils),
@@ -1306,37 +1304,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
13061304
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
13071305
DEALINGS IN THE SOFTWARE.
13081306
1309-
```
1310-
-------------
1311-
## MIT License: rmp, rmp-serde
1312-
1313-
The following text applies to code linked from these dependencies:
1314-
[rmp-serde](https://github.com/3Hren/msgpack-rust),
1315-
[rmp](https://github.com/3Hren/msgpack-rust)
1316-
1317-
```
1318-
MIT License
1319-
1320-
Copyright (c) 2017 Evgeny Safronov
1321-
1322-
Permission is hereby granted, free of charge, to any person obtaining a copy
1323-
of this software and associated documentation files (the "Software"), to deal
1324-
in the Software without restriction, including without limitation the rights
1325-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1326-
copies of the Software, and to permit persons to whom the Software is
1327-
furnished to do so, subject to the following conditions:
1328-
1329-
The above copyright notice and this permission notice shall be included in all
1330-
copies or substantial portions of the Software.
1331-
1332-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1333-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1334-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1335-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1336-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1337-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1338-
SOFTWARE.
1339-
13401307
```
13411308
-------------
13421309
## MIT License: scroll

0 commit comments

Comments
 (0)