# 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 = "n_gram" version = "0.1.12" authors = ["Georgiy Ozhegov "] description = "Simple library for training n-gram language models." readme = "README.md" keywords = [ "lm", "n-gram", "ngram", "simple", ] license = "MIT" repository = "https://github.com/georgiyozhegov/n_gram.git" [dependencies.rand] version = "0.8.5" [dependencies.serde] version = "1.0.197" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.114" optional = true [features] corpus = [] default = ["serde"] serde = [ "dep:serde", "dep:serde_json", ]