Skip to content

Commit

Permalink
Merge pull request #86 from Jzow/master
Browse files Browse the repository at this point in the history
Fix Github CI/CD error
  • Loading branch information
Jzow authored Aug 20, 2023
2 parents 5d4fe14 + 349a2e8 commit 5911084
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

<br />

------
Encapsulating tide, combined with the design principles of spring boot.
will simplify web development and enable developers to focus more on business API development.

Expand Down
2 changes: 1 addition & 1 deletion example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ schemars = "0.8.8"
tokio = { version = "1.19.2", features = ["full"] }

#summer
summer-boot = { version = "1.0.1", path = "../summer-boot" }
summer-boot = { version = "1.3", path = "../summer-boot" }
2 changes: 1 addition & 1 deletion summer-boot-autoconfigure/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summer-boot-autoconfigure"
version = "1.0.1"
version = "1.3.0"
rust-version = "1.60.0"
edition = "2021"
description = "summer boot autoconfigure"
Expand Down
6 changes: 3 additions & 3 deletions summer-boot-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summer-boot-macro"
version = "1.0.3"
version = "1.3.0"
rust-version = "1.60.0"
edition = "2021"
description = "summer boot macro"
Expand All @@ -25,7 +25,7 @@ syn = { version = "1.0", features = ["full"] }
toml = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
summer-boot-autoconfigure = { version = "1.0.1", path = "../summer-boot-autoconfigure"}
summer-boot-autoconfigure = { version = "1.3", path = "../summer-boot-autoconfigure"}

[dev-dependencies]
summer-boot = { version = "1.0.3", path = "../summer-boot" }
summer-boot = { version = "1.3", path = "../summer-boot" }
7 changes: 4 additions & 3 deletions summer-boot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summer-boot"
version = "1.0.3"
version = "1.3.0"
rust-version = "1.60.0"
edition = "2021"
description = "summer boot"
Expand All @@ -16,7 +16,7 @@ repository = "https://github.com/summer-os/summer-boot"
homepage = "https://summeros.io/"

[features]
default = ["macros"]
default = ["macros", "async-h1"]
macros = [
"summer-boot-macro"
]
Expand All @@ -33,6 +33,7 @@ async-std = { version = "1.8.0", features = ["attributes"] }
async-trait = "0.1.41"
async-channel = "1.5.1"
async-dup = "1.2.2"
async-h1 = { version = "2.3.0", optional = true }

#pin
pin-project = "1.0.2"
Expand All @@ -45,7 +46,7 @@ futures-util = "0.3.6"


# summer dependencies
summer-boot-macro = { version = "1.0.2" , optional = true, path = "../summer-boot-macro"}
summer-boot-macro = { version = "1.3" , optional = true, path = "../summer-boot-macro"}

#log
femme = { version = "2.1.1"}
Expand Down
4 changes: 2 additions & 2 deletions summer-boot/src/tcp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mod parsed;
mod tcp_listener;
mod to_listener;
mod to_listener_impls;
#[cfg(all(unix, feature = "h1-server"))]
#[cfg(unix)]
mod unix;

use std::fmt::{Debug, Display};
Expand All @@ -21,7 +21,7 @@ pub use to_listener::ToListener;

pub(crate) use parsed::ParsedListener;
pub(crate) use tcp_listener::TcpListener;
#[cfg(all(unix, feature = "h1-server"))]
#[cfg(unix)]
pub(crate) use unix::UnixListener;

#[macro_export]
Expand Down

0 comments on commit 5911084

Please sign in to comment.