Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.89 to 1.0.91. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.89...1.0.91) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
16 lines
448 B
TOML
16 lines
448 B
TOML
[package]
|
|
name = "kcl-test-server"
|
|
description = "A test server for KCL"
|
|
version = "0.1.14"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.91"
|
|
hyper = { version = "0.14.29", features = ["http1", "server", "tcp"] }
|
|
kcl-lib = { version = "0.2", path = "../kcl" }
|
|
pico-args = "0.5.0"
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
serde_json = "1.0.128"
|
|
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
|