Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2016-03-27 | Implement advanced key lookup for lookup_mut | Bourgond Aries | -37/+6 | |
2016-03-27 | Implement a more advanced algorithm for lookup | Bourgond Aries | -2/+50 | |
The new algorithm allows the explicit usage of "" and '' to denote key names. This is useful for accessing tables or keys that are named in a non-conventional manner. | ||||
2016-03-25 | Add a test to see if the table's contents have changed | Bourgond Aries | -0/+22 | |
2016-03-25 | Implement the non-recursive lookup_mut | Bourgond Aries | -31/+95 | |
Also include some tests simply by copying and modifying the other tests for lookup. | ||||
2016-03-24 | Add lookup_mut method for mutable access | Bourgond Aries | -0/+62 | |
Mutable access may sometimes be desired in order to change values in the toml table. This can be used for dynamic configurations which will be easy to modify and store. lookup_mut requires a recursive method due to the borrow checker not allowing to have more than one mutable reference in the same scope. | ||||
2016-01-21 | Address issues found by rust-clippy | Corey Farwell | -7/+7 | |
2015-09-25 | Implement Value::lookup for empty path to return self | Kerhong | -0/+20 | |
2015-08-12 | Merge remote-tracking branch 'remotes/origin/master' into serde | Erick Tryzelaar | -2/+1 | |
2015-08-11 | Don't need to qualify String | Alex Crichton | -2/+1 | |
2015-06-06 | Rework fix for table redefinition to avoid breaking AST-compatiblity | Andrzej Janik | -18/+2 | |
2015-06-04 | Disallow table redefinitions | Andrzej Janik | -2/+18 | |
2015-04-02 | wip | Alex Crichton | -0/+1 | |
2015-04-02 | Modularize rustc-serialize support | Alex Crichton | -60/+10 | |
* Add rustc-serialize as a default feature * Make room for for serde support | ||||
2015-04-01 | Bump to 0.1.20 | Alex Crichton | -1/+0 | |
2015-03-25 | Bump to 0.1.19 | Alex Crichton | -1/+1 | |
2015-03-20 | Implement Encodable for Value | Alex Crichton | -2/+51 | |
We can't generically decode into one, but we can generically encode one! Closes #58 | ||||
2015-03-15 | Improve test coverage | Alex Crichton | -2/+2 | |
2015-03-09 | Reduce usage of unstable features | Alex Crichton | -3/+5 | |
2015-03-03 | Don't upload extra docs on travis | Alex Crichton | -0/+1 | |
2015-03-03 | Add a doc root url | Steven Fackler | -1/+1 | |
2015-02-03 | Bump to 0.1.16 | Alex Crichton | -3/+5 | |
2015-02-02 | Move show.rs to display.rs | Alex Crichton | -1/+1 | |
2015-02-02 | Fix a deprecation warning | Alex Crichton | -2/+2 | |
2015-01-29 | Add some feature gates | Alex Crichton | -1/+1 | |
2015-01-27 | Migrate to as many stable functions as possible | Alex Crichton | -4/+4 | |
2015-01-15 | Move tests to integration tests | Alex Crichton | -1/+1 | |
2015-01-09 | Bump to 0.1.11 | Alex Crichton | -4/+3 | |
2015-01-08 | Update to master | Valerii Hiora | -4/+5 | |
- features - macro reform - String/Show split in formatter - staging | ||||
2015-01-06 | Remove old_orphan_check | Alex Crichton | -1/+0 | |
2015-01-06 | Fallout of serialize traits changes | Valerii Hiora | -0/+1 | |
2015-01-03 | Update to master | Valerii Hiora | -1/+2 | |
- updated `rustc-serialize` dependency, in other case `toml-rs` prohibits `rustc-serialize` update on other crates - updated after syntax and lib changes | ||||
2014-12-23 | Update to rust master | Alex Crichton | -8/+6 | |
2014-12-20 | Update to rust master | Alex Crichton | -4/+4 | |
2014-12-06 | Update to rust master | Alex Crichton | -29/+27 | |
Closes #34 | ||||
2014-12-06 | Update to rust master | Alex Crichton | -2/+5 | |
2014-11-18 | Update to namespaced enum variants. | Victor Berger | -5/+9 | |
2014-11-17 | FromStr fixes | Valerii Hiora | -1/+1 | |
2014-11-06 | fix error on master | Steve Klabnik | -1/+1 | |
2014-11-04 | Implement the libstd error trait for errors | Alex Crichton | -1/+1 | |
2014-10-31 | Update to rust master | Alex Crichton | -2/+2 | |
2014-10-03 | Export DecodeErrorKind c-tors publicly. | Cristian Cobzarenco | -0/+3 | |
2014-09-23 | Allow warnings for now | Alex Crichton | -1/+1 | |
2014-09-23 | Remove allow(visible_private_types) | Björn Steinbrink | -1/+0 | |
It's not needed and no longer supported by rustc anyway. | ||||
2014-09-21 | Update to rust master | Alex Crichton | -7/+8 | |
Closes #19 | ||||
2014-08-24 | add crate_name | Julian Orth | -0/+1 | |
2014-08-17 | Rename parser::Error to parser::ParseError | Brian Koropoff | -1/+1 | |
This avoids a conflict with serialization::Error and actually re-exports it from the crate root as intended. It also fixes a build break due to the new import shadowing gate in rustc. | ||||
2014-08-03 | Put documentation on github | Alex Crichton | -0/+252 | |