# 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 = "multisql" version = "0.4.3" authors = [ "Kyran Gostelow ", "Taehoon Moon ", ] description = "MultiSQL" readme = "README.md" keywords = [ "database", "database-engine", "sql", "modular", "multi-threaded", ] license = "Apache-2.0" repository = "https://kyra.nz/MultiSQL/multisql" resolver = "2" [package.metadata.docs.rs] all-features = true [[test]] name = "query" path = "tests/query_main.rs" harness = false [[test]] name = "misc" path = "tests/misc_main.rs" harness = false [[test]] name = "api" path = "tests/api_main.rs" harness = false [[test]] name = "functionality" path = "tests/functionality_main.rs" harness = false [[test]] name = "databases" path = "tests/databases_main.rs" harness = false [[bench]] name = "bench" harness = false [dependencies.async-recursion] version = "0.3.1" [dependencies.async-trait] version = "0.1.41" [dependencies.bincode] version = "1.3.1" optional = true [dependencies.boolinator] version = "2.4.0" [dependencies.chrono] version = "0.4.19" features = [ "serde", "unstable-locales", ] [dependencies.concat-idents] version = "1.1.2" [dependencies.csv] version = "1.1.6" optional = true [dependencies.fast-float] version = "0.2.0" [dependencies.fastrand] version = "1.7.0" [dependencies.fstrings] version = "0.2.3" [dependencies.futures] version = "0.3" [dependencies.lazy_static] version = "1.4.0" [dependencies.lexical] version = "6.1.0" [dependencies.linecount] version = "0.1.0" optional = true [dependencies.odbc-api] version = "0.40.1" optional = true [dependencies.rayon] version = "1.5.1" [dependencies.serde] version = "1.0.117" features = ["derive"] [dependencies.serde_json] version = "1.0.0" [dependencies.serde_yaml] version = "0.8.23" [dependencies.sled] version = "0.34.7" optional = true [dependencies.sqlparser] version = "0.16.0" features = ["serde"] [dependencies.thiserror] version = "1.0.21" [dependencies.thousands] version = "0.2.0" [dependencies.umya-spreadsheet] version = "=0.7.1" optional = true [dependencies.uuid] version = "0.8" features = [ "serde", "v4", ] [dev-dependencies.criterion] version = "0.3.5" features = ["html_reports"] [dev-dependencies.indicatif] version = "0.16.2" [dev-dependencies.inventory] version = "0.2.3" [dev-dependencies.tokio] version = "0.3.3" features = [ "macros", "rt", ] [features] alter-table = [] auto-increment = [] csv-database = [ "csv", "linecount", ] default = [ "sled-database", "csv-database", "sheet-database", "memory-database", "alter-table", "auto-increment", "implicit_float_conversion", ] implicit_float_conversion = [] memory-database = [] odbc-database = ["odbc-api"] sheet-database = ["umya-spreadsheet"] sled-database = [ "sled", "bincode", ]