jellybobbin
jellybobbin
Definitely a nice-to-have!
@Xiretza Even if I don't use it & `str`, the parser returns char. When the input is escape Unicode, it cannot become a continuous string; ### when `let input =...
This is the feature I'd like to see most.
have the same problem
This is a defect
I have tried it locally, but `config::value::ValueKind` cannot adapt well to `eon::Value::Variant`: ### config::value::ValueKind ```rust #[derive(Debug, Clone, PartialEq)] pub enum ValueKind { Nil, Boolean(bool), I64(i64), I128(i128), U64(u64), U128(u128), Float(f64), String(String),...
@epage @polarathene Specifically, there is no corresponding variant for `eon::Value::Variant(value)` in `config::ValueKind` ### `src/file/format/eon.rs`: ```rust use std::error::Error; use eon::NumberImpl; use crate::format; use crate::map::Map; use crate::value::{Value, ValueKind}; pub(crate) fn parse( uri:...
Is it possible to integrate and enumerate the values of other crates without constructing `config::ValueKind` # config::Value ```rust pub enum Value { Toml(toml::Value), Json(serde_json::Value), Ron(ron::Value), ... } ```
@iTrooz You can use `dotenvy`