-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
14 lines (13 loc) · 897 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "mem_viewer"
version = "0.3.0"
edition = "2021"
license = "MIT"
description = "Memory Viewer is a Rust library that provides a macro and display the memory content of various types of variables. It allows users to view the name, type, size, and memory content of a variable in a formatted way. It supports viewing memory content of different data types including integers, floating-point numbers, strings, pointers, vectors, boxed variables, and structs."
authors = ["Muhammad Ikhwan Perwira <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ikhwanperwira/mem_viewer"
categories = ["development-tools", "development-tools::debugging", "development-tools::testing", "development-tools::profiling", "development-tools::procedural-macro-helpers"]
[dependencies]
serde = { version = ">=1.0.203", features = ["derive"] }
bincode = {version = ">=1.3.3"}