Skip to content

Commit 8c017af

Browse files
committed
Make the Deserializer value public
1 parent 128d218 commit 8c017af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rquickjs-serde"
33
description = "Serde support for rquickjs"
4-
version = "0.1.1"
4+
version = "0.1.2"
55
edition = "2024"
66
license = "Apache-2.0"
77
repository = "https://github.com/rquickjs/rquickjs-serde"

src/de.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ enum ClassId {
4545
/// });
4646
/// ```
4747
pub struct Deserializer<'js> {
48-
value: Value<'js>,
48+
pub value: Value<'js>,
4949
map_key: bool,
5050
current_kv: Option<(Value<'js>, Value<'js>)>,
5151
/// Stack to track circular dependencies.

0 commit comments

Comments
 (0)