Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alecmocatta committed Jul 6, 2020
1 parent 0391e4e commit 33cd62f
Show file tree
Hide file tree
Showing 19 changed files with 55 additions and 55 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "amadeus"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand All @@ -35,14 +35,14 @@ json = ["amadeus-serde", "amadeus-derive/serde"]
features = ["constellation", "aws", "commoncrawl", "parquet", "postgres", "csv", "json"]

[dependencies]
amadeus-core = { version = "=0.2.5", path = "amadeus-core" }
amadeus-derive = { version = "=0.2.5", path = "amadeus-derive" }
amadeus-types = { version = "=0.2.5", path = "amadeus-types" }
amadeus-aws = { version = "=0.2.5", path = "amadeus-aws", optional = true }
amadeus-commoncrawl = { version = "=0.2.5", path = "amadeus-commoncrawl", optional = true }
amadeus-parquet = { version = "=0.2.5", path = "amadeus-parquet", optional = true }
amadeus-postgres = { version = "=0.2.5", path = "amadeus-postgres", optional = true }
amadeus-serde = { version = "=0.2.5", path = "amadeus-serde", optional = true }
amadeus-core = { version = "=0.3.0", path = "amadeus-core" }
amadeus-derive = { version = "=0.3.0", path = "amadeus-derive" }
amadeus-types = { version = "=0.3.0", path = "amadeus-types" }
amadeus-aws = { version = "=0.3.0", path = "amadeus-aws", optional = true }
amadeus-commoncrawl = { version = "=0.3.0", path = "amadeus-commoncrawl", optional = true }
amadeus-parquet = { version = "=0.3.0", path = "amadeus-parquet", optional = true }
amadeus-postgres = { version = "=0.3.0", path = "amadeus-postgres", optional = true }
amadeus-serde = { version = "=0.3.0", path = "amadeus-serde", optional = true }
async-std = { version = "1.6", features = ["unstable"] }
constellation-rs = { version = "0.1", default-features = false, optional = true }
derive-new = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ We aim to create a community that is welcoming and helpful to anyone that is int

Amadeus has deep, pluggable, integration with various file formats, databases and interfaces:

| Data format | [`Source`](https://docs.rs/amadeus/0.2/amadeus/trait.Source.html) | [`Destination`](https://docs.rs/amadeus/0.2/amadeus/trait.Destination.html) |
| Data format | [`Source`](https://docs.rs/amadeus/0.3/amadeus/trait.Source.html) | [`Destination`](https://docs.rs/amadeus/0.3/amadeus/trait.Destination.html) |
|---|---|---|
| CSV | βœ” | βœ” |
| JSON | βœ” | βœ” |
Expand Down
8 changes: 4 additions & 4 deletions amadeus-aws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-aws"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand All @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }

[dependencies]
amadeus-core = { version = "=0.2.5", path = "../amadeus-core" }
amadeus-types = { version = "=0.2.5", path = "../amadeus-types" }
amadeus-core = { version = "=0.3.0", path = "../amadeus-core" }
amadeus-types = { version = "=0.3.0", path = "../amadeus-types" }
async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] }
async-trait = "0.1"
chrono = { version = "0.4", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions amadeus-aws/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/source/index.html).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.3.0")]
#![feature(type_alias_impl_trait)]
#![warn(
// missing_copy_implementations,
Expand Down
8 changes: 4 additions & 4 deletions amadeus-commoncrawl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-commoncrawl"
version = "0.2.5"
version = "0.3.0"
license = "MIT OR Apache-2.0"
authors = ["Stephen Becker IV <github@deathbyescalator.com>", "Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand All @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }

[dependencies]
amadeus-core = { version = "=0.2.5", path = "../amadeus-core" }
amadeus-types = { version = "=0.2.5", path = "../amadeus-types" }
amadeus-core = { version = "=0.3.0", path = "../amadeus-core" }
amadeus-types = { version = "=0.3.0", path = "../amadeus-types" }
async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] }
futures = "0.3"
nom = "4.2.3"
Expand Down
4 changes: 2 additions & 2 deletions amadeus-commoncrawl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/source/index.html).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.3.0")]
#![feature(type_alias_impl_trait)]
#![warn(
// missing_copy_implementations,
Expand Down
4 changes: 2 additions & 2 deletions amadeus-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-core"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions amadeus-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-core/0.3.0")]
#![recursion_limit = "25600"]
#![warn(
// missing_copy_implementations,
Expand Down
4 changes: 2 additions & 2 deletions amadeus-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-derive"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions amadeus-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/data/derive.Data.html).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-derive/0.3.0")]
#![recursion_limit = "400"]
#![warn(
missing_copy_implementations,
Expand Down
8 changes: 4 additions & 4 deletions amadeus-parquet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-parquet"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>", "Apache Arrow <dev@arrow.apache.org>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand All @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }

[dependencies]
amadeus-core = { version = "=0.2.5", path = "../amadeus-core" }
amadeus-types = { version = "=0.2.5", path = "../amadeus-types" }
amadeus-core = { version = "=0.3.0", path = "../amadeus-core" }
amadeus-types = { version = "=0.3.0", path = "../amadeus-types" }
async-trait = "0.1"
brotli = "3.3"
byteorder = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions amadeus-parquet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/source/index.html).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-parquet/0.3.0")]
#![feature(bufreader_seek_relative)]
#![feature(read_initializer)]
#![feature(specialization)]
Expand Down
8 changes: 4 additions & 4 deletions amadeus-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-postgres"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand All @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }

[dependencies]
amadeus-core = { version = "=0.2.5", path = "../amadeus-core" }
amadeus-types = { version = "=0.2.5", path = "../amadeus-types" }
amadeus-core = { version = "=0.3.0", path = "../amadeus-core" }
amadeus-types = { version = "=0.3.0", path = "../amadeus-types" }
bytes = "0.5"
chrono = { version = "0.4", default-features = false }
educe = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions amadeus-postgres/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/source/index.html).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-postgres/0.3.0")]
#![feature(specialization)]
#![feature(type_alias_impl_trait)]
#![warn(
Expand Down
8 changes: 4 additions & 4 deletions amadeus-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-serde"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand All @@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }

[dependencies]
amadeus-core = { version = "=0.2.5", path = "../amadeus-core" }
amadeus-types = { version = "=0.2.5", path = "../amadeus-types" }
amadeus-core = { version = "=0.3.0", path = "../amadeus-core" }
amadeus-types = { version = "=0.3.0", path = "../amadeus-types" }
chrono = { version = "0.4", default-features = false, features = ["serde"] }
csv = "1.0"
educe = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions amadeus-serde/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/source/index.html).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-serde/0.3.0")]
#![feature(specialization)]
#![feature(type_alias_impl_trait)]
#![warn(
Expand Down
6 changes: 3 additions & 3 deletions amadeus-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amadeus-types"
version = "0.2.5"
version = "0.3.0"
license = "Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["concurrency", "science", "database", "date-and-time", "data-structures"]
Expand All @@ -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.2.5"
documentation = "https://docs.rs/amadeus/0.3.0"
readme = "README.md"
edition = "2018"

Expand All @@ -19,7 +19,7 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }

[dependencies]
amadeus-core = { version = "=0.2.5", path = "../amadeus-core" }
amadeus-core = { version = "=0.3.0", path = "../amadeus-core" }
chrono = { version = "0.4", default-features = false, features = ["std", "serde"] }
chrono-tz = { version = "0.5", features = ["serde"] }
fxhash = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions amadeus-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>
//!
//! 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.2/amadeus/data/index.html).
//! 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.2.5")]
#![doc(html_root_url = "https://docs.rs/amadeus-types/0.3.0")]
#![warn(
// missing_copy_implementations,
// missing_debug_implementations,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! <a href="https://crates.io/crates/amadeus">πŸ“¦&nbsp;&nbsp;Crates.io</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://github.com/constellation-rs/amadeus">πŸ“‘&nbsp;&nbsp;GitHub</a>&nbsp;&nbsp;β”‚&nbsp;&nbsp;<a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">πŸ’¬&nbsp;&nbsp;Chat</a>
//! </strong></p>

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

0 comments on commit 33cd62f

Please sign in to comment.