Releases: silent-rs/silent
Releases · silent-rs/silent
v1.3.2
What's Changed
- refactor(response) : response优化重构 by @hubertshelley in #46
Full Changelog: v1.3.1...v1.3.2
v1.3.1
🐛 Bug Fixes
- (static) 静态资源content-type缺失异常修复
⚙️ Miscellaneous Tasks
- Deps update
- Move silent-db to silent-db.git
- Add rsa
- Add version for response
- (publish) Publish v1.3.1: 修复static输出数据无content-type异常
v1.3.0
What's Changed
- Update sqlparser requirement from 0.45.0 to 0.46.0 by @dependabot in #44
- feat(grpc): grpc support by @hubertshelley in #45
Full Changelog: v1.2.3...v1.3.0
v1.2.3
What's Changed
- Update sqlparser requirement from 0.44.0 to 0.45.0 by @dependabot in #42
- Update tokenizers requirement from 0.15.2 to 0.19.1 by @dependabot in #43
Full Changelog: v1.2.0...v1.2.3
v1.2.0
Full Changelog: v1.2.0...v1.2.1
What's Changed
- Features/silent db/index support by @hubertshelley in #40
- refactor(middleware): 增加中间件中断机制 by @hubertshelley in #41
Full Changelog: v1.1.2...v1.2.0
v1.1.2
Merge pull request #39 from hubertshelley/features/silent_db/index_su…
v1.0.9
add features multipart
v1.0.7
add llm example
v1.0.5
- root 添加静态资源处理方法,提高静态资源处理效率
- handler_wrapper_static 调整为 stream输出
v0.12.0
configs support
setting
use silent::Configs;
let mut configs = Configs::default();
configs.insert(1i32);
usage
async fn call(req: Request) -> Result<i32> {
let num = req.configs().get::<i32>().unwrap();
Ok(*num)
}