-
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.
Merge pull request #7 from alecmocatta/compile-time
Improve compile times; rename Timestamp -> DateTime
- Loading branch information
Showing
95 changed files
with
5,414 additions
and
8,496 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.2" | ||
version = "0.1.3" | ||
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.2" | ||
documentation = "https://docs.rs/amadeus/0.1.3" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
@@ -30,23 +30,25 @@ parquet = ["amadeus-parquet", "amadeus-derive/parquet"] | |
postgres = ["amadeus-postgres", "amadeus-derive/postgres"] | ||
csv = ["amadeus-serde", "amadeus-derive/serde"] | ||
json = ["amadeus-serde", "amadeus-derive/serde"] | ||
doc = ["amadeus-aws/doc", "amadeus-commoncrawl/doc", "amadeus-parquet/doc", "amadeus-postgres/doc", "amadeus-serde/doc"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["constellation", "aws", "commoncrawl", "postgres", "csv", "json"] | ||
features = ["doc", "constellation", "aws", "commoncrawl", "postgres", "csv", "json"] | ||
|
||
[dependencies] | ||
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 } | ||
amadeus-core = { version = "=0.1.3", path = "amadeus-core" } | ||
amadeus-derive = { version = "=0.1.3", path = "amadeus-derive" } | ||
amadeus-types = { version = "=0.1.3", path = "amadeus-types" } | ||
amadeus-aws = { version = "=0.1.3", path = "amadeus-aws", optional = true } | ||
amadeus-commoncrawl = { version = "=0.1.3", path = "amadeus-commoncrawl", optional = true } | ||
amadeus-parquet = { version = "=0.1.3", path = "amadeus-parquet", optional = true } | ||
amadeus-postgres = { version = "=0.1.3", path = "amadeus-postgres", optional = true } | ||
amadeus-serde = { version = "=0.1.3", path = "amadeus-serde", optional = true } | ||
constellation-rs = { version = "0.1", default-features = false, optional = true } | ||
futures-preview = "=0.3.0-alpha.18" | ||
futures-preview = "=0.3.0-alpha.19" | ||
pin-utils = "0.1.0-alpha.4" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_closure = "0.1" | ||
serde_closure = "0.2" | ||
serde_traitobject = "0.1.6" | ||
|
||
# pin; broken for some reason | ||
|
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.2" | ||
version = "0.1.3" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -10,26 +10,33 @@ 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.2" | ||
documentation = "https://docs.rs/amadeus/0.1.3" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
[badges] | ||
azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" } | ||
maintenance = { status = "actively-developed" } | ||
|
||
[features] | ||
doc = [] | ||
|
||
[dependencies] | ||
amadeus-core = { version = "=0.1.2", path = "../amadeus-core" } | ||
chrono = "0.4" | ||
amadeus-core = { version = "=0.1.3", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.1.3", path = "../amadeus-types" } | ||
chrono = { version = "0.4", default-features = false } | ||
flate2 = "1.0" | ||
futures-01 = { package = "futures", version = "0.1" } | ||
futures-preview = { version = "=0.3.0-alpha.18", features = ["compat"] } | ||
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat"] } | ||
http = "0.1" | ||
once_cell = "1.0" | ||
rusoto_core = "0.40" | ||
rusoto_s3 = "0.40" | ||
serde_closure = "0.1" | ||
serde_closure = "0.2" | ||
serde = { version = "1.0", features = ["derive"] } | ||
tokio = "0.1.7" | ||
tokio-retry = "0.2" | ||
url = { version = "2.1", features = ["serde"] } | ||
|
||
# dependency of rusoto_core/hyper-tls/native-tls; ensure it's vendored to simplify cross-compilation | ||
openssl = { version = "0.10", features = ["vendored"] } |
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
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
Oops, something went wrong.