我正在尝试从Cryptonite库导入ByteArray。 我的cabal文件在Builddepends中具有cryptonite,并且我的import语句看起来像这样
import Crypto.Internal.ByteArray (ByteArray, Bytes)
import qualified Crypto.Internal.ByteArray as B
我得到的错误是 无法加载模块“ Crypto.Internal.ByteArray” 它是“ cryptonite-0.25”包中的隐藏模块 我看到了其他使用此特定import语句的代码示例,我在这里缺少什么?