Skip to content
Open
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
187 changes: 171 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ name = "toml"
[dependencies]
libc="0.2.146"
toml_edit="0.19.10"
labview-interop = { version = "0.2" }
Binary file modified lv_src/Doc/check_for_parse_errors.vi
Binary file not shown.
Binary file modified lv_src/Doc/from_string.vi
Binary file not shown.
Binary file modified lv_src/Doc/get_table.vi
Binary file not shown.
Binary file modified lv_src/Doc/list_tables.vi
Binary file not shown.
Binary file modified lv_src/Doc/set_item.vi
Binary file not shown.
Binary file modified lv_src/Doc/to_toml_string.vi
Binary file not shown.
Binary file modified lv_src/InlineTable/contains_item.vi
Binary file not shown.
Binary file modified lv_src/InlineTable/get_item_by_name.vi
Binary file not shown.
Binary file modified lv_src/InlineTable/list_items.vi
Binary file not shown.
Binary file modified lv_src/InlineTable/remove_item_by_name.vi
Binary file not shown.
Binary file modified lv_src/InlineTable/set_item_by_name.vi
Binary file not shown.
Binary file modified lv_src/Item/from_string.vi
Binary file not shown.
Binary file modified lv_src/Item/get_item_type.vi
Binary file not shown.
Binary file modified lv_src/Table/contains_item.vi
Binary file not shown.
Binary file modified lv_src/Table/get_item_by_name.vi
Binary file not shown.
Binary file modified lv_src/Table/list_items.vi
Binary file not shown.
Binary file modified lv_src/Table/remove_item_by_name.vi
Binary file not shown.
Binary file modified lv_src/Table/set_item_by_name.vi
Binary file not shown.
Binary file modified lv_src/Table/to_string.vi
Binary file not shown.
Binary file modified lv_src/Value/get_value_for_string.vi
Binary file not shown.
Binary file modified lv_src/Value/get_value_type.vi
Binary file not shown.
Binary file modified lv_src/dragon_toml_32.dll
Binary file not shown.
Binary file modified lv_src/dragon_toml_64.dll
Binary file not shown.
Binary file removed lv_src/support/free_c_string_at_memory_address.vi
Binary file not shown.
Binary file removed lv_src/support/read_c_string_at_memory_address.vi
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 1 addition & 4 deletions lv_src/toml_edit.lvlib
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
<Property Name="NI.LV.All.SourceOnly" Type="Bool">true</Property>
<Item Name="support" Type="Folder">
<Property Name="NI.LibItem.Scope" Type="Int">2</Property>
<Item Name="free_c_string_at_memory_address.vi" Type="VI" URL="../support/free_c_string_at_memory_address.vi"/>
<Item Name="read_c_string_at_memory_address.vi" Type="VI" URL="../support/read_c_string_at_memory_address.vi"/>
<Item Name="support.read_and_free_array_multiline_string_at_address.vi" Type="VI" URL="../support/support.read_and_free_array_multiline_string_at_address.vi"/>
<Item Name="support.read_and_free_string_at_address.vi" Type="VI" URL="../support/support.read_and_free_string_at_address.vi"/>
<Item Name="support.read__multiline_string.vi" Type="VI" URL="../support/support.read__multiline_string.vi"/>
</Item>
<Item Name="Doc.lvclass" Type="LVClass" URL="../Doc/Doc.lvclass"/>
<Item Name="InlineTable.lvclass" Type="LVClass" URL="../InlineTable/InlineTable.lvclass"/>
Expand Down
Loading