# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "graphex" version = "0.2.0" authors = ["Matthieu Gautier "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A small library to help creating command line tools exploring pseudo graph" readme = "README.md" license = "MIT" repository = "https://github.com/kymeria/graphex" [package.metadata.docs.rs] features = ["serde"] [lib] name = "graphex" path = "src/lib.rs" [[example]] name = "explore_fs" path = "examples/explore_fs.rs" [dependencies.erased-serde] version = "0.4" optional = true [dependencies.serde] version = "1.0.197" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.114" optional = true [dependencies.thiserror] version = "1.0.64" [features] serde = [ "dep:serde", "dep:serde_json", "dep:erased-serde", ] serde_no_default_impl = []