Fix missing std/strutils import for parseEnum
This commit is contained in:
parent
eeb7a04422
commit
224fd6efc9
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue