diff options
| author | Philipp A | 2018-11-19 12:34:21 +0100 | 
|---|---|---|
| committer | Philipp A | 2018-11-19 12:34:21 +0100 | 
| commit | 4272b19a79f786c6121e6c18c5aa4da4a4b2e02a (patch) | |
| tree | 8d0bcee64120a003fceb69b74762fb335a906ad9 | |
| parent | 0fa6ad2e25df27e281b04d51d2c64b5658dc8876 (diff) | |
| download | rust-rst-4272b19a79f786c6121e6c18c5aa4da4a4b2e02a.tar.bz2 | |
track upstream pest again
| -rw-r--r-- | Cargo.toml | 12 | 
1 files changed, 6 insertions, 6 deletions
| @@ -13,12 +13,12 @@ repository = 'https://github.com/flying-sheep/rust-rst.git'  edition = '2018'  [lib] -name = "rst" -path = "src/lib.rs" +name = 'rst' +path = 'src/lib.rs'  [[bin]] -name = "rst" -path = "src/bin.rs" +name = 'rst' +path = 'src/bin.rs'  [dependencies]  failure = '0.1.3' @@ -26,8 +26,8 @@ failure_derive = '0.1.3'  url = '1.7.2'  bitflags = '1.0.4'  unicode_categories = '0.1.1' -pest        = { git = 'https://github.com/flying-sheep/pest', branch = 'the-future' } -pest_derive = { git = 'https://github.com/flying-sheep/pest', branch = 'the-future' } +pest        = { git = 'https://github.com/pest-parser/pest' } +pest_derive = { git = 'https://github.com/pest-parser/pest' }  serde = '1.0.80'  serde_json = '1.0.33' | 
