[package] name = "v8_profile_rs" version = "1.0.2" edition = "2021" description = "parse v8 heapsnapshot to serialized node info json " license = "MIT" [dependencies] serde = { version = "1.0", features = ["derive", "rc"] } serde_json = "1.0" rs-parse-snapshot = { path = "../parse", version="1.0"} chrono = "0.4" clap = { version = "4.1.0", features = ["derive"] } [[bin]] name = "v8-parse" path = "src/bin.rs"