diff options
author | edef <edef@unfathomable.blue> | 2022-04-20 19:02:00 +0000 |
---|---|---|
committer | edef <edef@unfathomable.blue> | 2022-04-20 19:02:00 +0000 |
commit | dcdc7d0411b724e3b5cfe35830f426f585c63c43 (patch) | |
tree | 6518187e0dad97bdb204f2e88ee546d2c3f5cd26 /ripple/fossil/src | |
parent | 4c784b0b1562d7465908fcb671c4f48ce299d272 (diff) | |
download | unf-legacy-dcdc7d0411b724e3b5cfe35830f426f585c63c43.tar.zst |
ripple/fossil: prefer anyhow::Result over io::Result
Change-Id: I4a94b84ef456b427422757a899fdce6198fd01a1
Diffstat (limited to 'ripple/fossil/src')
-rw-r--r-- | ripple/fossil/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ripple/fossil/src/lib.rs b/ripple/fossil/src/lib.rs index 9e380f2..8858196 100644 --- a/ripple/fossil/src/lib.rs +++ b/ripple/fossil/src/lib.rs @@ -2,6 +2,7 @@ // SPDX-License-Identifier: OSL-3.0 use { + anyhow::Result, byteorder::{BigEndian, ByteOrder}, prost::Message, std::{ @@ -26,7 +27,7 @@ pub struct Store { } impl Store { - pub fn open(path: impl AsRef<Path>) -> io::Result<Store> { + pub fn open(path: impl AsRef<Path>) -> Result<Store> { let db = sled::open(path)?; Ok(Store { db }) } |