Fix missing std/strutils import for parseEnum

This commit is contained in:
jangko 2024-01-27 16:27:05 +07:00
parent eeb7a04422
commit 224fd6efc9
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
2 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,7 @@
[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)
![Github action](https://github.com/status-im/nim-json-serialization/actions/workflows/ci.yml/badge.svg)
![Github action](https://github.com/status-im/nim-json-serialization/workflows/CI/badge.svg)
Flexible JSON serialization does not rely on run-time type information.

View File

@ -8,8 +8,9 @@
# those terms.
import
std/net,
../../json_serialization, chronos/transports/common
std/[net, strutils],
chronos/transports/common,
../../json_serialization
export
net, common