Skip to content

[VARIANT] Create low-level Variant library with json_to_variant implementation #1030

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 16 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"kernel/examples/*",
"test-utils",
"feature-tests",
"variant",
]
# note that in addition to the members above, the workspace includes examples:
# - inspect-table
Expand Down
14 changes: 14 additions & 0 deletions variant/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "variant"
description = "Low-level library related to the Variant data type."
edition = "2021"

[dependencies]
indexmap = "2.9.0"
rust_decimal = "1.37.2"
# "arbitrary_precision" allows us to manually parse numbers. "preserve_order" does not automatically
# sort object keys
serde_json = { version = "1.0", features = ["arbitrary_precision", "preserve_order"] }

[lib]
crate-type = ["lib"]
Loading