diff --git a/Cargo.toml b/Cargo.toml index 5a76531e..9a9dfc33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "amadeus" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] @@ -36,15 +36,15 @@ bench = ["serde-csv", "once_cell", "arrow-parquet", "rayon"] features = ["constellation", "aws", "commoncrawl", "parquet", "postgres", "csv", "json"] [dependencies] -amadeus-core = { version = "=0.4.0", path = "amadeus-core" } -amadeus-derive = { version = "=0.4.0", path = "amadeus-derive" } -amadeus-types = { version = "=0.4.0", path = "amadeus-types" } -amadeus-aws = { version = "=0.4.0", path = "amadeus-aws", optional = true } -amadeus-commoncrawl = { version = "=0.4.0", path = "amadeus-commoncrawl", optional = true } -amadeus-parquet = { version = "=0.4.0", path = "amadeus-parquet", optional = true } -amadeus-postgres = { version = "=0.4.0", path = "amadeus-postgres", optional = true } -amadeus-serde = { version = "=0.4.0", path = "amadeus-serde", optional = true } -amadeus-streaming = { version = "=0.4.0", path = "amadeus-streaming" } +amadeus-core = { version = "=0.4.1", path = "amadeus-core" } +amadeus-derive = { version = "=0.4.1", path = "amadeus-derive" } +amadeus-types = { version = "=0.4.1", path = "amadeus-types" } +amadeus-aws = { version = "=0.4.1", path = "amadeus-aws", optional = true } +amadeus-commoncrawl = { version = "=0.4.1", path = "amadeus-commoncrawl", optional = true } +amadeus-parquet = { version = "=0.4.1", path = "amadeus-parquet", optional = true } +amadeus-postgres = { version = "=0.4.1", path = "amadeus-postgres", optional = true } +amadeus-serde = { version = "=0.4.1", path = "amadeus-serde", optional = true } +amadeus-streaming = { version = "=0.4.1", path = "amadeus-streaming" } async-channel = "1.1" bincode = { version = "1.3", optional = true } constellation-rs = { version = "0.2.0-alpha.2", default-features = false, optional = true } diff --git a/amadeus-aws/Cargo.toml b/amadeus-aws/Cargo.toml index 99515ebb..bb883f2f 100644 --- a/amadeus-aws/Cargo.toml +++ b/amadeus-aws/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-aws" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2 maintenance = { status = "actively-developed" } [dependencies] -amadeus-core = { version = "=0.4.0", path = "../amadeus-core" } -amadeus-types = { version = "=0.4.0", path = "../amadeus-types" } +amadeus-core = { version = "=0.4.1", path = "../amadeus-core" } +amadeus-types = { version = "=0.4.1", path = "../amadeus-types" } async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] } async-trait = "0.1" chrono = { version = "0.4", default-features = false } diff --git a/amadeus-aws/src/lib.rs b/amadeus-aws/src/lib.rs index 22d0152a..11b16275 100644 --- a/amadeus-aws/src/lib.rs +++ b/amadeus-aws/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::source`](https://docs.rs/amadeus/0.3/amadeus/source/index.html). -#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.4.1")] #![cfg_attr(nightly, feature(type_alias_impl_trait))] #![warn( // missing_copy_implementations, diff --git a/amadeus-commoncrawl/Cargo.toml b/amadeus-commoncrawl/Cargo.toml index a8adf12f..67fec556 100644 --- a/amadeus-commoncrawl/Cargo.toml +++ b/amadeus-commoncrawl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-commoncrawl" -version = "0.4.0" +version = "0.4.1" license = "MIT OR Apache-2.0" authors = ["Stephen Becker IV ", "Alec Mocatta "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2 maintenance = { status = "actively-developed" } [dependencies] -amadeus-core = { version = "=0.4.0", path = "../amadeus-core" } -amadeus-types = { version = "=0.4.0", path = "../amadeus-types" } +amadeus-core = { version = "=0.4.1", path = "../amadeus-core" } +amadeus-types = { version = "=0.4.1", path = "../amadeus-types" } async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] } futures = "0.3" nom = "4.2.3" diff --git a/amadeus-commoncrawl/src/lib.rs b/amadeus-commoncrawl/src/lib.rs index e3cc1be7..3f4ec6e9 100644 --- a/amadeus-commoncrawl/src/lib.rs +++ b/amadeus-commoncrawl/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::source`](https://docs.rs/amadeus/0.3/amadeus/source/index.html). -#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.4.1")] #![cfg_attr(nightly, feature(type_alias_impl_trait))] #![warn( // missing_copy_implementations, diff --git a/amadeus-core/Cargo.toml b/amadeus-core/Cargo.toml index e8257a9d..5895edea 100644 --- a/amadeus-core/Cargo.toml +++ b/amadeus-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-core" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] @@ -19,7 +19,7 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2 maintenance = { status = "actively-developed" } [dependencies] -amadeus-streaming = { version = "=0.4.0", path = "../amadeus-streaming" } +amadeus-streaming = { version = "=0.4.1", path = "../amadeus-streaming" } async-trait = "0.1" derive-new = "0.5" educe = "0.4" @@ -34,7 +34,7 @@ rand = "0.7" replace_with = "0.1" serde = { version = "1.0", features = ["derive"] } serde_closure = "0.3" -sum = { version = "0.1", features = ["futures", "serde"] } +sum = { version = "0.1.7", default-features = false, features = ["futures", "serde", "0", "1", "2", "3", "4", "5", "6", "7", "8"] } tokio = { version = "0.2", features = ["blocking", "rt-core"] } walkdir = "2.2" widestring = "0.4" diff --git a/amadeus-core/src/lib.rs b/amadeus-core/src/lib.rs index b1a704c6..f89cced0 100644 --- a/amadeus-core/src/lib.rs +++ b/amadeus-core/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. All functionality is re-exposed in [`amadeus`](https://docs.rs/amadeus/0.3/amadeus/). -#![doc(html_root_url = "https://docs.rs/amadeus-core/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-core/0.4.1")] #![cfg_attr(nightly, feature(unboxed_closures))] #![recursion_limit = "25600"] #![warn( diff --git a/amadeus-derive/Cargo.toml b/amadeus-derive/Cargo.toml index 34563811..00d1cb2f 100644 --- a/amadeus-derive/Cargo.toml +++ b/amadeus-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-derive" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] diff --git a/amadeus-derive/src/lib.rs b/amadeus-derive/src/lib.rs index ab8dd236..f2d79950 100644 --- a/amadeus-derive/src/lib.rs +++ b/amadeus-derive/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. This macro is re-exposed as [`amadeus::data::Data`](https://docs.rs/amadeus/0.3/amadeus/data/derive.Data.html). -#![doc(html_root_url = "https://docs.rs/amadeus-derive/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-derive/0.4.1")] #![recursion_limit = "400"] #![warn( missing_copy_implementations, diff --git a/amadeus-parquet/Cargo.toml b/amadeus-parquet/Cargo.toml index ed0b6c19..c7e3362c 100644 --- a/amadeus-parquet/Cargo.toml +++ b/amadeus-parquet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-parquet" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta ", "Apache Arrow "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2 maintenance = { status = "actively-developed" } [dependencies] -amadeus-core = { version = "=0.4.0", path = "../amadeus-core" } -amadeus-types = { version = "=0.4.0", path = "../amadeus-types" } +amadeus-core = { version = "=0.4.1", path = "../amadeus-core" } +amadeus-types = { version = "=0.4.1", path = "../amadeus-types" } async-trait = "0.1" brotli = "3.3" byteorder = "1.2" @@ -37,7 +37,7 @@ rustversion = "1.0" serde = { version = "1.0", features = ["derive"] } serde_closure = "0.3" snap = "1.0" -sum = "0.1" +sum = { version = "0.1.7", default-features = false, features = ["2", "3"] } thrift = "0.13" zstd = { version = "0.5", features = ["wasm"] } diff --git a/amadeus-parquet/src/lib.rs b/amadeus-parquet/src/lib.rs index 4c04c831..26e73cb5 100644 --- a/amadeus-parquet/src/lib.rs +++ b/amadeus-parquet/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::source`](https://docs.rs/amadeus/0.3/amadeus/source/index.html). -#![doc(html_root_url = "https://docs.rs/amadeus-parquet/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-parquet/0.4.1")] #![cfg_attr(nightly, feature(bufreader_seek_relative))] #![cfg_attr(nightly, feature(read_initializer))] #![cfg_attr(nightly, feature(specialization))] diff --git a/amadeus-postgres/Cargo.toml b/amadeus-postgres/Cargo.toml index bac7401b..9aa3b223 100644 --- a/amadeus-postgres/Cargo.toml +++ b/amadeus-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-postgres" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2 maintenance = { status = "actively-developed" } [dependencies] -amadeus-core = { version = "=0.4.0", path = "../amadeus-core" } -amadeus-types = { version = "=0.4.0", path = "../amadeus-types" } +amadeus-core = { version = "=0.4.1", path = "../amadeus-core" } +amadeus-types = { version = "=0.4.1", path = "../amadeus-types" } bytes = "0.5" chrono = { version = "0.4", default-features = false } educe = "0.4" @@ -29,7 +29,7 @@ pin-project = "0.4" postgres = { package = "tokio-postgres", version = "0.5", features = ["with-chrono-0_4"] } serde = { version = "1.0", features = ["derive"] } serde_closure = "0.3" -sum = "0.1" +sum = { version = "0.1.7", default-features = false } tokio = "0.2" [build-dependencies] diff --git a/amadeus-postgres/src/lib.rs b/amadeus-postgres/src/lib.rs index 4302d29a..c29bfca7 100644 --- a/amadeus-postgres/src/lib.rs +++ b/amadeus-postgres/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::source`](https://docs.rs/amadeus/0.3/amadeus/source/index.html). -#![doc(html_root_url = "https://docs.rs/amadeus-postgres/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-postgres/0.4.1")] #![cfg_attr(nightly, feature(type_alias_impl_trait))] #![warn( // missing_copy_implementations, diff --git a/amadeus-serde/Cargo.toml b/amadeus-serde/Cargo.toml index 1fec1b8d..2b86f0d3 100644 --- a/amadeus-serde/Cargo.toml +++ b/amadeus-serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-serde" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2 maintenance = { status = "actively-developed" } [dependencies] -amadeus-core = { version = "=0.4.0", path = "../amadeus-core" } -amadeus-types = { version = "=0.4.0", path = "../amadeus-types" } +amadeus-core = { version = "=0.4.1", path = "../amadeus-core" } +amadeus-types = { version = "=0.4.1", path = "../amadeus-types" } chrono = { version = "0.4", default-features = false, features = ["serde"] } csv = "1.0" educe = "0.4" @@ -30,7 +30,7 @@ serde = { version = "1.0", features = ["derive"] } serde_bytes = "0.11" serde_closure = "0.3" serde_json = "1.0" -sum = { version = "0.1", features = ["serde"] } +sum = { version = "0.1.7", default-features = false, features = ["serde"] } recycle = "0.1" [build-dependencies] diff --git a/amadeus-serde/src/lib.rs b/amadeus-serde/src/lib.rs index c6b79be7..a785f958 100644 --- a/amadeus-serde/src/lib.rs +++ b/amadeus-serde/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::source`](https://docs.rs/amadeus/0.3/amadeus/source/index.html). -#![doc(html_root_url = "https://docs.rs/amadeus-serde/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-serde/0.4.1")] #![cfg_attr(nightly, feature(type_alias_impl_trait))] #![warn( // missing_copy_implementations, diff --git a/amadeus-streaming/Cargo.toml b/amadeus-streaming/Cargo.toml index 996cc7dd..afee6659 100644 --- a/amadeus-streaming/Cargo.toml +++ b/amadeus-streaming/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-streaming" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["data-structures", "algorithms", "science"] diff --git a/amadeus-streaming/src/lib.rs b/amadeus-streaming/src/lib.rs index 04c3b4ec..36c4a47c 100644 --- a/amadeus-streaming/src/lib.rs +++ b/amadeus-streaming/src/lib.rs @@ -27,7 +27,7 @@ // // As these implementations are often in hot code paths, unsafe is used, albeit only when necessary to a) achieve the asymptotically optimal algorithm or b) mitigate an observed bottleneck. -#![doc(html_root_url = "https://docs.rs/amadeus-streaming/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-streaming/0.4.1")] #![cfg_attr(nightly, feature(map_first_last))] #![cfg_attr(nightly, feature(unboxed_closures))] #![warn( diff --git a/amadeus-types/Cargo.toml b/amadeus-types/Cargo.toml index ea0c9557..5d424b6f 100644 --- a/amadeus-types/Cargo.toml +++ b/amadeus-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amadeus-types" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0" authors = ["Alec Mocatta "] categories = ["concurrency", "science", "database", "date-and-time", "data-structures"] @@ -19,7 +19,7 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2 maintenance = { status = "actively-developed" } [dependencies] -amadeus-core = { version = "=0.4.0", path = "../amadeus-core" } +amadeus-core = { version = "=0.4.1", path = "../amadeus-core" } chrono = { version = "0.4", default-features = false, features = ["std", "serde"] } chrono-tz = { version = "0.5", features = ["serde"] } fxhash = "0.2" diff --git a/amadeus-types/src/lib.rs b/amadeus-types/src/lib.rs index a963e00d..ec73bc79 100644 --- a/amadeus-types/src/lib.rs +++ b/amadeus-types/src/lib.rs @@ -6,7 +6,7 @@ //! //! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::data`](https://docs.rs/amadeus/0.3/amadeus/data/index.html). -#![doc(html_root_url = "https://docs.rs/amadeus-types/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus-types/0.4.1")] #![warn( // missing_copy_implementations, // missing_debug_implementations, diff --git a/src/lib.rs b/src/lib.rs index 74d902d7..b339b282 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! 📦  Crates.io  â”‚  ðŸ“‘  GitHub  â”‚  ðŸ’¬  Chat //!

-#![doc(html_root_url = "https://docs.rs/amadeus/0.4.0")] +#![doc(html_root_url = "https://docs.rs/amadeus/0.4.1")] #![doc( html_logo_url = "https://raw.githubusercontent.com/constellation-rs/amadeus/master/logo.svg?sanitize=true" )]