Skip to content

Commit 148b07d

Browse files
committed
No nighly features in dependencies
1 parent 930c545 commit 148b07d

File tree

8 files changed

+25
-6
lines changed

8 files changed

+25
-6
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

imageflow_abi/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ base64="0.5"
2222
imageflow_helpers = { path = "../imageflow_helpers", version = "*" }
2323
moz-cheddar = "0.4.1"
2424
regex = "0.2"
25+
26+
[features]
27+
nightly = ["imageflow_core/nightly", "imageflow_helpers/nightly"]

imageflow_core/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,6 @@ mozjpeg = "0.8.5"
6565

6666
[dev-dependencies]
6767
hyper = "=0.10.12"
68+
69+
[features]
70+
nightly = ["imageflow_helpers/nightly"]

imageflow_helpers/Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ digest = "*"
2929

3030
uuid = { version = "*", features= ["v4", "v5"]}
3131

32-
lockless = "0.2"
32+
lockless = { git="https://github.com/Diggsey/lockless", rev="15264477a4889a9cb2964180b33a53919d72d3fc" }
3333
smallvec = "*"
3434
# regex
3535
regex = "0.2"
@@ -44,7 +44,7 @@ zip = { version = "0.2", default-features = false }
4444

4545
app_dirs = "^1.1.1"
4646
chashmap = "2.2"
47-
parking_lot = {version = "0.5", features = ["nightly"]}
47+
parking_lot = {version = "0.5"}
4848

4949
unicase = "2"
5050
# HTTPS is a little bit of a nightmare
@@ -61,3 +61,6 @@ backtrace = "0.3.2"
6161
[target.'cfg(not(any(target_os = "windows", target_os = "macos")))'.dependencies]
6262
openssl = "0.9"
6363
hyper-openssl = "0.2.6"
64+
65+
[features]
66+
nightly = ["parking_lot/nightly"]

imageflow_riapi/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ lazy_static = "1"
1717

1818
difference = "1"
1919

20-
20+
[features]
21+
nightly = ["imageflow_helpers/nightly"]

imageflow_server/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,6 @@ rev = "2c3d719be4c158d4ddbd8cdb402fafccdefec58c"
7171
[dependencies.logger]
7272
git = "https://github.com/iron/logger.git"
7373
rev = "0daead5fe10c3cd0c4738767c162dc63a59c3fb3"
74+
75+
[features]
76+
nightly = ["imageflow_core/nightly", "imageflow_helpers/nightly"]

imageflow_tool/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ imageflow_helpers = { path = "../imageflow_helpers", version = "*" }
2020
name = "imageflow_tool"
2121
path = "src/main.rs"
2222
doc = false
23+
24+
[features]
25+
nightly = ["imageflow_helpers/nightly"]

imageflow_types/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ chrono = "0.4"
2121
[build-dependencies]
2222
quick-error = "1"
2323
chrono = "0.4"
24+
25+
[features]
26+
nightly = ["imageflow_helpers/nightly"]

0 commit comments

Comments
 (0)