Skip to content

Commit

Permalink
fix issue with 'default-features = false' not being respected
Browse files Browse the repository at this point in the history
  • Loading branch information
mateocabanal committed Dec 7, 2023
1 parent 1db24fc commit d2acd0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tinyhttp-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tinyhttp-codegen"
version = "0.4.0-rc4"
version = "0.4.0-rc5"
authors = ["Mateo Cabanal <[email protected]>"]
edition = "2018"
license = "GPL-2.0-or-later"
Expand All @@ -16,4 +16,4 @@ proc-macro = true
[dependencies]
syn = { version = "2", features = ["full", "extra-traits"] }
quote = "1.0.18"
tinyhttp-internal = { path = "../tinyhttp-internal", version = "0.4.0-rc4", default-features = false }
tinyhttp-internal = { path = "../tinyhttp-internal", version = "0.4.0-rc5", default-features = false }
2 changes: 1 addition & 1 deletion tinyhttp-internal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["http", "server"]
license = "GPL-2.0-or-later"
name = "tinyhttp-internal"
repository = "https://github.com/mateocabanal/tinyhttp-internal"
version = "0.4.0-rc4"
version = "0.4.0-rc5"

[dependencies]
mime_guess = "2.0.4"
Expand Down
6 changes: 3 additions & 3 deletions tinyhttp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tinyhttp"
version = "0.4.0-rc4"
version = "0.4.0-rc5"
edition = "2021"
authors = ["Mateo Cabanal <[email protected]>"]
license = "GPL-2.0-or-later"
Expand All @@ -26,8 +26,8 @@ name = "async"
required-features = ["async"]

[dependencies]
tinyhttp-internal = { path = "../tinyhttp-internal", version = "0.4.0-rc4", default-features = false, features = ["sys"] }
tinyhttp-codegen = { path = "../tinyhttp-codegen", version = "0.4.0-rc4" }
tinyhttp-internal = { path = "../tinyhttp-internal", version = "0.4.0-rc5", default-features = false }
tinyhttp-codegen = { path = "../tinyhttp-codegen", version = "0.4.0-rc5" }

[features]
default = ["ssl", "sys", "log"]
Expand Down

0 comments on commit d2acd0d

Please sign in to comment.