# 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 = "orx-v" version = "1.1.0" authors = ["orxfun "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Traits to unify all vectors!" readme = "README.md" keywords = [ "vec", "vector", "algorithm", "trait", "monomorphisation", ] categories = [ "data-structures", "algorithms", "no-std", ] license = "MIT" repository = "https://github.com/orxfun/orx-v/" [lib] name = "orx_v" path = "src/lib.rs" [[example]] name = "binary_search" path = "examples/binary_search.rs" [[example]] name = "bubble_sort" path = "examples/bubble_sort.rs" [[example]] name = "dijkstra" path = "examples/dijkstra.rs" [[example]] name = "dot_product" path = "examples/dot_product.rs" [[example]] name = "floyd_warshall" path = "examples/floyd_warshall.rs" [[example]] name = "haversine" path = "examples/haversine.rs" [[example]] name = "two_opt" path = "examples/two_opt.rs" [[test]] name = "constant" path = "tests/constant.rs" [[test]] name = "debug_nvec" path = "tests/debug_nvec.rs" [[test]] name = "empty" path = "tests/empty.rs" [[test]] name = "fun" path = "tests/fun.rs" [[test]] name = "jagged" path = "tests/jagged.rs" [[test]] name = "range" path = "tests/range.rs" [[test]] name = "sparse" path = "tests/sparse.rs" [[test]] name = "std_order_vec" path = "tests/std_order_vec.rs" [dependencies.arrayvec] version = "0.7.6" optional = true default-features = false [dependencies.ndarray] version = "0.16.1" optional = true default-features = false [dependencies.orx-fixed-vec] version = "3.10.0" optional = true default-features = false [dependencies.orx-split-vec] version = "3.10.0" optional = true default-features = false [dependencies.smallvec] version = "1.13.2" optional = true default-features = false [dependencies.tinyvec] version = "1.8.0" features = ["alloc"] optional = true default-features = false [dev-dependencies.ndarray] version = "0.16" [dev-dependencies.num] version = "0.4" [dev-dependencies.orx-priority-queue] version = "1.4" [dev-dependencies.orx-split-vec] version = "3.10" [dev-dependencies.rand] version = "0.8" [dev-dependencies.rand_chacha] version = "0.3" [features] all = [ "std", "arrayvec", "ndarray", "orx-fixed-vec", "orx-split-vec", "smallvec", "tinyvec", ] default = ["std"] std = []