# 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 = "best-path" version = "0.1.1" description = "Shortest/longest path algorithms, where edge weight accumulation via either a sum or a product" homepage = "https://github.com/konrads/best-path" readme = "README.md" keywords = [ "path", "graph", "floyd-warshall", "scale", ] categories = [ "algorithms", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/konrads/best-path" resolver = "2" [dependencies.codec] version = ">=1.0.0" features = ["derive"] optional = true default-features = false package = "parity-scale-codec" [dependencies.num-traits] version = ">=0.2.1" features = ["libm"] default-features = false [dependencies.scale-info] version = ">=0.1.0" features = ["derive"] optional = true default-features = false [features] default = ["std"] scale = [ "codec", "scale-info", ] std = [ "codec/std", "scale-info/std", ]