Unverified Commit cf1450f2 authored by Doug's avatar Doug Committed by GitHub
Browse files

Moved Polly code examples into polly directory (#484)



* Moved Polly code examples into polly directory

* Renamed Polly helloword.rs as polly-helloworld.rs; added doc comments to all source files

* Delete unused example directories

Co-authored-by: default avatarRussell Cohen <rcoh@amazon.com>
parent 1501c174
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
[package]
name = "polly-describe-voices"
version = "0.1.0"
authors = ["Doug Schwartz <dougsch@amazon.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polly = { package = "aws-sdk-polly", path = "../../build/aws-sdk/polly" }
tokio = { version = "1", features = ["full"] }
structopt = { version = "0.3", default-features = false }
tracing-subscriber = { version = "0.2.16", features = ["fmt"] }
aws-types = { path = "../../build/aws-sdk/aws-types" }
+0 −11
Original line number Diff line number Diff line
[package]
name = "polly-helloworld"
version = "0.1.0"
authors = ["Russell Cohen <rcoh@amazon.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polly = { package = "aws-sdk-polly", path = "../../build/aws-sdk/polly"}
tokio = { version = "1", features = ["full"] }
+0 −14
Original line number Diff line number Diff line
[package]
name = "polly-list-lexicons"
version = "0.1.0"
authors = ["Doug Schwartz <dougsch@amazon.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polly = { package = "aws-sdk-polly", path = "../../build/aws-sdk/polly" }
tokio = { version = "1", features = ["full"] }
structopt = { version = "0.3", default-features = false }
tracing-subscriber = { version = "0.2.16", features = ["fmt"] }
aws-types = { path = "../../build/aws-sdk/aws-types" }
+0 −15
Original line number Diff line number Diff line
[package]
name = "polly-put-lexicon"
version = "0.1.0"
authors = ["Doug Schwartz <dougsch@amazon.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polly = { package = "aws-sdk-polly", path = "../../build/aws-sdk/polly" }
aws-hyper = { path = "../../build/aws-sdk/aws-hyper"}
tokio = { version = "1", features = ["full"] }
structopt = { version = "0.3", default-features = false }
tracing-subscriber = { version = "0.2.16", features = ["fmt"] }
aws-types = { path = "../../build/aws-sdk/aws-types" }
+2 −2
Original line number Diff line number Diff line
[package]
name = "polly-synthesize-speech"
name = "polly-code-examples"
version = "0.1.0"
authors = ["Doug Schwartz <dougsch@amazon.com>"]
authors = ["Russell Cohen <rcoh@amazon.com>", "Doug Schwartz <dougsch@amazon.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Loading