Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump iron-fork to 0.3.0 (and remove .cargo) #411

Merged
merged 1 commit into from
Apr 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .cargo/config

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
/target/
components/*/target
components/*/Cargo.lock
.cargo

# Generated by IPCameraAdapter
/snapshots/
Expand Down
144 changes: 52 additions & 92 deletions Cargo.lock

Large diffs are not rendered by default.

23 changes: 14 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,33 @@ exclude = [ "**/*.conf",
default = ["authentication"]
authentication = []

[replace]
"iron:0.3.0" = { path = "iron-fork/" }

[build-dependencies]
pkg-config = "0.3"

[dependencies]
foxbox_thinkerbell = { path = "components/thinkerbell/" }
openzwave-adapter = { path = "components/openzwave-adapter/" }
foxbox_taxonomy = { path = "components/taxonomy/" }
tls = { path = "components/tls/" }

foxbox_users = { git = "https://github.com/fxbox/users.git", rev = "1033e08" }
multicast_dns = { git = "https://github.com/fxbox/multicast-dns.git", rev = "a6e4bcc" }
iron-cors = { git = "https://github.com/fxbox/iron-cors.git", rev = "96ede73" }

chrono = "0.2.19"
clippy = "0.0.63"
docopt = "0.6.78"
docopt_macros = "0.6.80"
env_logger = "0.3.2"
get_if_addrs = "0.3.1"
hyper = "0.7.2"
multicast_dns = { git = "https://github.com/fxbox/multicast-dns.git", rev = "a6e4bcc" }
iron-cors = { git = "https://github.com/fxbox/iron-cors.git", rev = "96ede73" }
hyper = "0.8.1"
libc = "0.2.7"
log = "0.3"
mio = { git = "https://github.com/carllerche/mio.git" }
mount = "0.0.10"
mount = "0.1.0"
nix = { git = "https://github.com/nix-rust/nix.git", rev = "138080" } # Until 0.5.1 is released
openssl = "0.7.6"
openssl-sys = "0.7.6"
Expand All @@ -46,25 +52,24 @@ rusqlite = "0.6.0"
serde = "0.7.0"
serde_json = "0.7.0"
serde_macros = "0.7.2"
staticfile = "0.1.0"
staticfile = "0.2.0"
transformable_channels = "^0.1"
unicase = "1.3.0"
tls = { path = "./components/tls" }
time = "0.1"
timer = "0.1.6"
uuid = "0.1.18"
url = "0.5.7"
ws = { git = "https://github.com/housleyjk/ws-rs.git", rev = "d154fc5" }
ws = { git = "https://github.com/JohanLorenzo/ws-rs.git" , branch = "0.4.6" }
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needed, otherwise mio version mismatch.

xml-rs = "0.3.0"

[dependencies.iron]
version = "0.2.6"
version = "0.3.0"
default-features = true
features = ["ssl"]

[dev-dependencies]
stainless = "0.1.4"
iron-test = "0.2.0"
iron-test = "0.3.0"
regex = "0.1.55"
rand = "0.3.14"
tempdir = "0.3.4"
23 changes: 7 additions & 16 deletions components/dns_challenge/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions components/dns_challenge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ publish = false
name = "dnschallenge"
path = "main.rs"

[replace]
"iron:0.3.0" = { path = "../../iron-fork/" }

[dependencies.tls]
path = "../tls"

Expand Down
30 changes: 13 additions & 17 deletions components/tls/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions components/tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ publish = false
name = "tls"
path = "lib.rs"

[replace]
"iron:0.3.0" = { path = "../../iron-fork/" }

[dependencies.iron]
version = "0.2.6"
version = "0.3.0"
default-features = true
features = ["ssl"]

[dependencies]
clippy = "0.0.63"
hyper = "0.7.2"
hyper = "0.8.1"
log = "0.3"
mktemp = "0.1.2"
openssl = "0.7.6"
Expand Down
8 changes: 4 additions & 4 deletions iron-fork/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "iron"
version = "0.2.6"
version = "0.3.0"
description = "Extensible, Concurrency Focused Web Development in Rust."
readme = "README.md"
repository = "https://github.com/iron/iron"
Expand All @@ -26,7 +26,7 @@ ssl = ["hyper/ssl"]
[dependencies]
typemap = "0.3"
url = "0.5"
plugin = "0.2*"
plugin = "0.2"
modifier = "0.1"
error = "0.1"
log = "0.3"
Expand All @@ -35,8 +35,8 @@ lazy_static = "0.1"
num_cpus = "0.2"

[dependencies.hyper]
version = "0.7"
version = "0.8"
default-features = false

[dev-dependencies]
time = "*"
time = "0.1"