-
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 #88 from constellation-rs/recycle
Switch to `recycle` to finally build on stable
- Loading branch information
Showing
22 changed files
with
49 additions
and
49 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.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
@@ -35,14 +35,14 @@ json = ["amadeus-serde", "amadeus-derive/serde"] | |
features = ["constellation", "aws", "commoncrawl", "parquet", "postgres", "csv", "json"] | ||
|
||
[dependencies] | ||
amadeus-core = { version = "=0.3.3", path = "amadeus-core" } | ||
amadeus-derive = { version = "=0.3.3", path = "amadeus-derive" } | ||
amadeus-types = { version = "=0.3.3", path = "amadeus-types" } | ||
amadeus-aws = { version = "=0.3.3", path = "amadeus-aws", optional = true } | ||
amadeus-commoncrawl = { version = "=0.3.3", path = "amadeus-commoncrawl", optional = true } | ||
amadeus-parquet = { version = "=0.3.3", path = "amadeus-parquet", optional = true } | ||
amadeus-postgres = { version = "=0.3.3", path = "amadeus-postgres", optional = true } | ||
amadeus-serde = { version = "=0.3.3", path = "amadeus-serde", optional = true } | ||
amadeus-core = { version = "=0.3.4", path = "amadeus-core" } | ||
amadeus-derive = { version = "=0.3.4", path = "amadeus-derive" } | ||
amadeus-types = { version = "=0.3.4", path = "amadeus-types" } | ||
amadeus-aws = { version = "=0.3.4", path = "amadeus-aws", optional = true } | ||
amadeus-commoncrawl = { version = "=0.3.4", path = "amadeus-commoncrawl", optional = true } | ||
amadeus-parquet = { version = "=0.3.4", path = "amadeus-parquet", optional = true } | ||
amadeus-postgres = { version = "=0.3.4", path = "amadeus-postgres", optional = true } | ||
amadeus-serde = { version = "=0.3.4", path = "amadeus-serde", optional = true } | ||
async-channel = "1.1" | ||
constellation-rs = { version = "0.2.0-alpha.2", default-features = false, optional = true } | ||
derive-new = "0.5" | ||
|
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.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
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.3.3", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.3", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.3.4", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.4", path = "../amadeus-types" } | ||
async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] } | ||
async-trait = "0.1" | ||
chrono = { version = "0.4", default-features = false } | ||
|
@@ -35,7 +35,7 @@ serde_closure = "0.3" | |
serde = { version = "1.0", features = ["derive"] } | ||
tokio = "0.2" | ||
url = { version = "2.1", features = ["serde"] } | ||
vec-utils = "0.2" | ||
recycle = "0.1" | ||
|
||
# dependency of rusoto_core/hyper-tls/native-tls; ensure it's vendored to simplify cross-compilation | ||
[target.'cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios")))'.dependencies] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-commoncrawl" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Stephen Becker IV <[email protected]>", "Alec Mocatta <[email protected]>"] | ||
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.3.3", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.3", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.3.4", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.4", path = "../amadeus-types" } | ||
async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] } | ||
futures = "0.3" | ||
nom = "4.2.3" | ||
|
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-core" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amadeus-derive" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"] | ||
|
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.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>", "Apache Arrow <[email protected]>"] | ||
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.3.3", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.3", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.3.4", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.4", path = "../amadeus-types" } | ||
async-trait = "0.1" | ||
brotli = "3.3" | ||
byteorder = "1.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
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.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
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.3.3", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.3", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.3.4", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.4", path = "../amadeus-types" } | ||
bytes = "0.5" | ||
chrono = { version = "0.4", default-features = false } | ||
educe = "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-serde" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
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.3.3", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.3", path = "../amadeus-types" } | ||
amadeus-core = { version = "=0.3.4", path = "../amadeus-core" } | ||
amadeus-types = { version = "=0.3.4", path = "../amadeus-types" } | ||
chrono = { version = "0.4", default-features = false, features = ["serde"] } | ||
csv = "1.0" | ||
educe = "0.4" | ||
|
@@ -31,7 +31,7 @@ serde_bytes = "0.11" | |
serde_closure = "0.3" | ||
serde_json = "1.0" | ||
sum = { version = "0.1", features = ["serde"] } | ||
vec-utils = "0.2" | ||
recycle = "0.1" | ||
|
||
[build-dependencies] | ||
rustversion = "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
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.3.3" | ||
version = "0.3.4" | ||
license = "Apache-2.0" | ||
authors = ["Alec Mocatta <[email protected]>"] | ||
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.3.3", path = "../amadeus-core" } | ||
amadeus-core = { version = "=0.3.4", path = "../amadeus-core" } | ||
chrono = { version = "0.4", default-features = false, features = ["std", "serde"] } | ||
chrono-tz = { version = "0.5", features = ["serde"] } | ||
fxhash = "0.2" | ||
|
@@ -28,7 +28,7 @@ once_cell = "1.0" | |
ordered-float = "2.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
url = { version = "2.1", features = ["serde"] } | ||
vec-utils = "0.2" | ||
recycle = "0.1" | ||
|
||
[build-dependencies] | ||
rustversion = "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
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