Skip to content
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ use gostd::vendor
- [x] 完成bytes模块。(version >=0.2.8)
- [x] 完成mime::multipart模块。(version >=0.3.1)
- [x] 修复windos10平台编译失败的bug。(version>=0.3.18)

- [x] 对net/http模块,自定义错误处理上的优化,引入bytes提高性能,api会有参数类型的变化(version>=0.4.1)
- [ ] 对net/http模块,增加异步编程的支持,独立一个模块支持异步编程,原来模块保持不变。
# 独立发布包

独立发布gostd_time,代码等价于 use gostd::time 。
Expand Down
5 changes: 4 additions & 1 deletion gostd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gostd"
license = "MIT"
version = "0.3.21"
version = "0.4.1"
edition = "2018"
authors = ["wandercn<wander@rustpub.com>"]
description = "gostd is the go standard library implementation in rust. gostd 是Go标准库的rust实现"
Expand All @@ -26,3 +26,6 @@ gostd_time = { version = "^1.0", optional = false, path = "../time" }
rand = "0.8.5"
log = "0.4"
lazy_static = "1.4.0"
bytes = "1"
thiserror ="2.0"
anyhow= "1.0"
Loading