summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Expand)Author
2021-10-23Make File generic over Format and FileExtensionsRadosław Kot
2021-10-23Implement FileExtensions trait for FileFormatRadosław Kot
2021-10-23Add FileExtensions traitRadosław Kot
2021-10-23Implement Format for FileFormatRadosław Kot
2021-10-23Add Format traitRadosław Kot
2021-10-19Fix panic: Unwrap()ing a f64::parse() should not happenMatthias Beyer
2021-10-12Merge pull request #235 from matthiasbeyer/deprecate-environment-newMatthias Beyer
2021-10-02Remove support for hjsonMatthias Beyer
2021-10-02Add deprecation notice to Environment::newMatthias Beyer
2021-10-02Fix clippy: variable does not need to be passed as &mutMatthias Beyer
2021-10-02Fix clippy: Remove unused field: AsyncConfigBuilder::defaultsMatthias Beyer
2021-10-02Fix clippy: Remove unused field: AsyncConfigBuilder::overridesMatthias Beyer
2021-10-02Fix clippy: Remove unused field: AsyncConfigBuilder::sourcesMatthias Beyer
2021-10-02Fix clippy: Remove Default impl for Environment, derive itMatthias Beyer
2021-08-15Rename MapImpl to MapDavid Orchard
2021-08-15Remove unnecessary uses for feature/mapDavid Orchard
2021-08-15Switch from LinkedHashMap to IndexMapDavid Orchard
2021-08-15Move order preservation under a feature gateDavid Orchard
2021-08-15Preserve map order when mergingDavid Orchard
2021-08-15Use LinkedHashMap in place of HashMapDavid Orchard
2021-07-03Fix clippy: Use to_string() instead of clone()Matthias Beyer
2021-07-03Fix clippy: Use &str instead of &String as argumentMatthias Beyer
2021-06-26Reimplement the Config building mechanismRadosław Kot
2021-06-26Add AsyncSource traitRadosław Kot
2021-06-26Add doc to fnMatthias Beyer
2021-06-26Refactor: Import Result and use it instead of specifying full type pathMatthias Beyer
2021-06-26Refactor: Extract setting of cache to helper fnMatthias Beyer
2021-06-09refactor(env): optimize and reduce allocationsEduardo Canellas
2021-06-08Fix clippy: Do not borrow referenceMatthias Beyer
2021-06-03ValueKind is now public to users of the crateMatthew Edwards
2021-05-15Simplify impl of from_json5_value()Matthias Beyer
2021-05-15Simplify parse() impl of json5 codeMatthias Beyer
2021-05-15Fix: json5 does not need serde_deriveMatthias Beyer
2021-05-15Support format json5up9cloud
2021-05-08Use ConfigBuilder in env.rs testsRadosław Kot
2021-05-08Make ConfigBuilder's method consumingRadosław Kot
2021-05-08Modify tests to use both ConfigBuilder and ConfigRadosław Kot
2021-05-08Add ConfigBuilderRadosław Kot
2021-05-08Merge pull request #137 from joelgallant/parse-env-numbersMatthias Beyer
2021-05-07Port to nom 6kpcyrd
2021-05-07Update to rust 2018 editionkpcyrd
2021-05-04Fix env tests, remove unused importJohn Brandt
2021-05-04Add perfromance note to `try_parsing`John Brandt
2021-05-04reduce env parsing repetitionJohn Brandt
2021-05-04more predictable env parsing and reduced clonesJohn Brandt
2021-05-04clearer env bool parse ifJohn Brandt
2021-05-04If env value is true or false parse as boolJohn Brandt
2021-05-04Renames parse_numbers to try_parsingJoel Gallant
2021-05-04Uses into_* for value conversions and adds bool as an optionJoel Gallant
2021-05-04Adds 'parse_numbers' options for EnvironmentJoel Gallant