# 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 = "sentence2vec" version = "0.1.0" authors = ["Dimitri Timoz "] description = "A tool to convert a sentence to a vector. It can be used to partition word2vec data. It can also be used to extract a list of words from a word2vec data file." readme = "README.md" license = "MIT" repository = "https://github.com/DimitriTimoz/sentence2vec" [lib] [[bin]] name = "partition" path = "bin/partition.rs" [[bin]] name = "extract" path = "bin/extract_list.rs" [dependencies.bincode] version = "1.3.3" optional = true [dependencies.env_logger] version = "0.10" optional = true [dependencies.log] version = "0.4" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde_bytes] version = "0.11.5" optional = true [dependencies.tokio] version = "1.12" features = [ "rt", "macros", ] [features] loading = [ "bincode", "serde_bytes", "serde", ] partition = [ "log", "env_logger", "loading", ]