Skip to content

Commit

Permalink
bump version to 0.1.0-pre.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ewilken committed Dec 12, 2020
1 parent 50cadfb commit 5a4211f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
[package]
name = "hap"
version = "0.1.0-pre.3"
authors = ["Elias Wilken <[email protected]>"]
edition = "2018"
description = "Rust implementation of the Apple HomeKit Accessory Protocol (HAP)"
documentation = "https://docs.rs/hap"
edition = "2018"
keywords = ["apple", "homekit"]
license = "MIT/Apache-2.0"
name = "hap"
readme = "README.md"
repository = "https://github.com/ewilken/hap-rs"
version = "0.1.0-pre.2"
license = "MIT/Apache-2.0"
keywords = ["apple", "homekit"]

[dependencies]
aead = "0.3"
async-trait = "0.1"
byteorder = "1.3"
bytes = "0.5"
chacha20poly1305 = "0.5"
ed25519-dalek = {version = "1.0.0-pre.4", features = ["std", "serde"]}
ed25519-dalek = { version = "1.0.0-pre.4", features = ["std", "serde"] }
erased-serde = "0.3"
eui48 = {version = "1.0", features = ["serde"]}
eui48 = { version = "1.0", features = ["serde"] }
futures = "0.3"
hyper = "0.13"
libmdns = "0.2"
log = "0.4"
num = "0.2"
rand = "0.7"
ring = "0.14"
serde = {version = "1.0", features = ["rc", "derive"]}
serde = { version = "1.0", features = ["rc", "derive"] }
serde_json = "1.0"
sha2 = "0.8"
signature = "1.1"
srp = "0.4"
thiserror = "1.0"
tokio = {version = "0.2", features = ["full"]}
tokio = { version = "0.2", features = ["full"] }
url = "2.1"
uuid = {version = "0.8", features = ["v4", "serde"]}
uuid = { version = "0.8", features = ["v4", "serde"] }
x25519-dalek = "0.6"

[build-dependencies]
handlebars = "2.0"
serde = {version = "1.0", features = ["derive"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = {version = "0.8", features = ["v4", "serde"]}
uuid = { version = "0.8", features = ["v4", "serde"] }

[dev-dependencies]
env_logger = "0.7"
Expand Down
16 changes: 8 additions & 8 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "hap-codegen"
version = "0.1.0-pre.3"
authors = ["Elias Wilken <[email protected]>"]
edition = "2018"
description = "Rust implementation of the Apple HomeKit Accessory Protocol (HAP)"
documentation = "https://docs.rs/hap"
edition = "2018"
keywords = ["apple", "homekit"]
license = "MIT/Apache-2.0"
name = "hap-codegen"
publish = false
readme = "README.md"
repository = "https://github.com/ewilken/hap-rs"
version = "0.1.0-pre.2"
license = "MIT/Apache-2.0"
keywords = ["apple", "homekit"]
publish = false

[dependencies]
handlebars = "2.0"
serde = {version = "1.0", features = ["derive"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = {version = "0.8", features = ["v4", "serde"]}
uuid = { version = "0.8", features = ["v4", "serde"] }

0 comments on commit 5a4211f

Please sign in to comment.