Skip to content
Closed
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