-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18171b6
commit 6910ff5
Showing
19 changed files
with
47 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "amadeus" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -14,7 +14,7 @@ parquet postgres aws s3 cloudfront elb json csv logs hadoop hdfs arrow common cr | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
@@ -35,14 +35,14 @@ json = ["amadeus-serde", "amadeus-derive/serde"] | |
features = ["constellation", "aws", "commoncrawl", "postgres", "csv", "json"] | ||
|
||
[dependencies] | ||
amadeus-core = { version = "0.1.0", path = "amadeus-core" } | ||
amadeus-derive = { version = "0.1.0", path = "amadeus-derive" } | ||
amadeus-types = { version = "0.1.0", path = "amadeus-types" } | ||
amadeus-aws = { version = "0.1.0", path = "amadeus-aws", optional = true } | ||
amadeus-commoncrawl = { version = "0.1.0", path = "amadeus-commoncrawl", optional = true } | ||
amadeus-parquet = { version = "0.1.0", path = "amadeus-parquet", optional = true } | ||
amadeus-postgres = { version = "0.1.0", path = "amadeus-postgres", optional = true } | ||
amadeus-serde = { version = "0.1.0", path = "amadeus-serde", optional = true } | ||
amadeus-core = { version = "=0.1.2", path = "amadeus-core" } | ||
amadeus-derive = { version = "=0.1.2", path = "amadeus-derive" } | ||
amadeus-types = { version = "=0.1.2", path = "amadeus-types" } | ||
amadeus-aws = { version = "=0.1.2", path = "amadeus-aws", optional = true } | ||
amadeus-commoncrawl = { version = "=0.1.2", path = "amadeus-commoncrawl", optional = true } | ||
amadeus-parquet = { version = "=0.1.2", path = "amadeus-parquet", optional = true } | ||
amadeus-postgres = { version = "=0.1.2", path = "amadeus-postgres", optional = true } | ||
amadeus-serde = { version = "=0.1.2", path = "amadeus-serde", optional = true } | ||
constellation-rs = { version = "0.1", default-features = false, optional = true } | ||
futures-preview = "=0.3.0-alpha.18" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-aws" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
@@ -19,7 +19,7 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" } | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
amadeus-core = { version = "0.1", path = "../amadeus-core" } | ||
amadeus-core = { version = "=0.1.2", path = "../amadeus-core" } | ||
chrono = "0.4" | ||
flate2 = "1.0" | ||
futures-01 = { package = "futures", version = "0.1" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.1.2")] | ||
|
||
mod cloudfront; | ||
mod file; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-commoncrawl" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Stephen Becker IV <[email protected]>", "Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" } | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
amadeus-core = { version = "0.1", path = "../amadeus-core" } | ||
amadeus-types = { version = "0.1", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.1.2", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.1.2", path = "../amadeus-types" } | ||
flate2 = "1.0" | ||
reqwest = "0.9" | ||
reqwest_resume = "0.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.1.2")] | ||
|
||
mod commoncrawl; | ||
mod parser; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-core" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-derive" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-parquet" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>", "Apache Arrow <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,7 +10,7 @@ An Apache Parquet implementation in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" } | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
amadeus-core = { version = "0.1", path = "../amadeus-core" } | ||
amadeus-types = { version = "0.1", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.1.2", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.1.2", path = "../amadeus-types" } | ||
brotli = "3.3" | ||
byteorder = "1.2" | ||
chrono = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-postgres" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" } | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
amadeus-core = { version = "0.1", path = "../amadeus-core" } | ||
amadeus-types = { version = "0.1", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.1.2", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.1.2", path = "../amadeus-types" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
postgres = { version = "0.15", features = ["with-chrono"] } | ||
serde_closure = "0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#![doc(html_root_url = "https://docs.rs/amadeus-postgres/0.1.2")] | ||
#![feature(specialization)] | ||
|
||
mod impls; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-serde" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" } | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
amadeus-core = { version = "0.1", path = "../amadeus-core" } | ||
amadeus-types = { version = "0.1", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.1.2", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.1.2", path = "../amadeus-types" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
csv = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-types" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "date-and-time", "data-structures"] | ||
|
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust. | |
""" | ||
repository = "https://github.com/alecmocatta/amadeus" | ||
homepage = "https://github.com/alecmocatta/amadeus" | ||
documentation = "https://docs.rs/amadeus/0.1.1" | ||
documentation = "https://docs.rs/amadeus/0.1.2" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters