mirror of
https://github.com/status-im/nim-json-serialization.git
synced 2025-02-16 12:07:35 +00:00
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: 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)
|
[![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)
|
![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.
|
Flexible JSON serialization does not rely on run-time type information.
|
||||||
|
|
||||||
|
@ -8,8 +8,9 @@
|
|||||||
# those terms.
|
# those terms.
|
||||||
|
|
||||||
import
|
import
|
||||||
std/net,
|
std/[net, strutils],
|
||||||
../../json_serialization, chronos/transports/common
|
chronos/transports/common,
|
||||||
|
../../json_serialization
|
||||||
|
|
||||||
export
|
export
|
||||||
net, common
|
net, common
|
||||||
|
Loading…
x
Reference in New Issue
Block a user