mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
92ebf4afe5
This commit adds unstable "Deno.openKv()" API that allows to open a key-value database at a specified path. --------- Co-authored-by: Luca Casonato <hello@lcas.dev> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
31 lines
809 B
Rust
31 lines
809 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
mod de;
|
|
mod error;
|
|
mod keys;
|
|
mod magic;
|
|
mod payload;
|
|
mod ser;
|
|
mod serializable;
|
|
pub mod utils;
|
|
|
|
pub use de::from_v8;
|
|
pub use de::from_v8_cached;
|
|
pub use de::to_utf8;
|
|
pub use de::Deserializer;
|
|
pub use error::Error;
|
|
pub use error::Result;
|
|
pub use keys::KeyCache;
|
|
pub use magic::any_value::AnyValue;
|
|
pub use magic::bigint::BigInt;
|
|
pub use magic::buffer::ZeroCopyBuf;
|
|
pub use magic::bytestring::ByteString;
|
|
pub use magic::detached_buffer::DetachedBuffer;
|
|
pub use magic::string_or_buffer::StringOrBuffer;
|
|
pub use magic::u16string::U16String;
|
|
pub use magic::ExternalPointer;
|
|
pub use magic::Global;
|
|
pub use magic::Value;
|
|
pub use ser::to_v8;
|
|
pub use ser::Serializer;
|
|
pub use serializable::Serializable;
|
|
pub use serializable::SerializablePkg;
|