Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | DynMap | Aleksey Kladov | 2019-12-06 | 1 | -0/+7 | |
| | | | | | This might, or might not help us to reduce boilerplate associated with plumbing values from analysis to the IDE layer | |||||
* | :arrow_up: rowan | Aleksey Kladov | 2019-12-04 | 1 | -3/+3 | |
| | ||||||
* | :arrow_up: rowan | Aleksey Kladov | 2019-12-04 | 1 | -3/+3 | |
| | ||||||
* | Replace `ra_hir_expand::either` with crate | ice1000 | 2019-12-03 | 1 | -0/+4 | |
| | ||||||
* | Just update some things | Jeremy Kolb | 2019-12-01 | 1 | -43/+43 | |
| | ||||||
* | Remove log dependency from ra_cli | Alexander Ekdahl | 2019-11-30 | 1 | -1/+0 | |
| | ||||||
* | Remove flexi_logger from ra_lsp_server | Alexander Ekdahl | 2019-11-30 | 1 | -58/+1 | |
| | ||||||
* | Use env_logger in ra_cli | Alexander Ekdahl | 2019-11-30 | 1 | -1/+21 | |
| | ||||||
* | Update mio and anyhow | kjeremy | 2019-11-27 | 1 | -7/+8 | |
| | ||||||
* | rename ra_ide_api -> ra_ide | Aleksey Kladov | 2019-11-27 | 1 | -4/+4 | |
| | ||||||
* | prune deps | Aleksey Kladov | 2019-11-27 | 1 | -16/+0 | |
| | ||||||
* | Move Ty | Aleksey Kladov | 2019-11-27 | 1 | -0/+1 | |
| | ||||||
* | Use a simple progress bar instead of indicatif | Edwin Cheng | 2019-11-26 | 1 | -26/+0 | |
| | ||||||
* | Fix stale crates that snuck in | Jeremy Kolb | 2019-11-26 | 1 | -1/+1 | |
| | ||||||
* | Merge #2410 | bors[bot] | 2019-11-26 | 1 | -0/+23 | |
|\ | | | | | | | | | | | | | | | 2410: Introduce hir_ty r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Introduce hir_ty | Aleksey Kladov | 2019-11-26 | 1 | -0/+23 | |
| | | ||||||
* | | Update parking_lot and smallvec to drop some dependencies | Jeremy Kolb | 2019-11-26 | 1 | -46/+5 | |
|/ | ||||||
* | Use chalk fork to paper over #2052 | Aleksey Kladov | 2019-11-26 | 1 | -34/+34 | |
| | ||||||
* | :arrow_up: salsa | Aleksey Kladov | 2019-11-26 | 1 | -20/+32 | |
| | ||||||
* | Update crates | Jeremy Kolb | 2019-11-25 | 1 | -56/+62 | |
| | ||||||
* | Update crates | Jeremy Kolb | 2019-11-21 | 1 | -30/+11 | |
| | ||||||
* | :arrow_up: rowan | Aleksey Kladov | 2019-11-19 | 1 | -3/+3 | |
| | ||||||
* | :arrow_up: rowan | Aleksey Kladov | 2019-11-17 | 1 | -3/+3 | |
| | ||||||
* | Add ast for plain and raw string literals | Aleksey Kladov | 2019-11-16 | 1 | -1/+0 | |
| | ||||||
* | Upgrade Chalk again | Florian Diebold | 2019-11-16 | 1 | -27/+28 | |
| | ||||||
* | Upgrade Chalk | Florian Diebold | 2019-11-16 | 1 | -27/+27 | |
| | | | | | Associated type values (in impls) are now a separate entity in Chalk, so we have to intern separate IDs for them. | |||||
* | Update smallvec dep to 1.0 | memoryruins | 2019-11-15 | 1 | -1/+7 | |
| | ||||||
* | Revert #2230 | Aleksey Kladov | 2019-11-14 | 1 | -1/+0 | |
| | | | | | Looks like autocfg tries to do slightly more than we need (see #2231), so let's stick with minimal home-grown solution. | |||||
* | Use anyhow::Result in xtask, add contexts | Pascal Hertleif | 2019-11-13 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This builds on #2231 but was actually done before that. You see, the cause for #2231 was that I got this error message: Error: Error { kind: Io(Os { code: 2, kind: NotFound, message: "No such file or directory" }) } Just switching to `anyhow::Result` got me stack traces (when setting `RUST_LIB_BACKTRACE=1`) that at least showed stack backtrace: 0: std::backtrace::Backtrace::create 1: std::backtrace::Backtrace::capture 2: anyhow::error::<impl core::convert::From<E> for anyhow::Error>::from 3: xtask::install_server 4: xtask::install 5: xtask::main 6: std::rt::lang_start::{{closure}} 7: std::panicking::try::do_call 8: __rust_maybe_catch_panic 9: std::rt::lang_start_internal 10: std::rt::lang_start 11: main With the added contexts (not at all exhaustive), the error became Error: install server Caused by: 0: build AutoCfg with target directory 1: No such file or directory (os error 2) Since anyhow is such a small thing (no new transitive dependencies!), and in general gives you `Result<T, Box<dyn Error>>` on steroids, I think this a nice small change. The only slightly annoying thing was to replace all the `Err(format!(…))?` calls (haven't even looked at whether we can make it support wrapping strings though), but the `bail!` macro is shorter anyway :) | |||||
* | Use autocfg to determine rust version | kjeremy | 2019-11-13 | 1 | -0/+1 | |
| | ||||||
* | Update Crates | Jeremy Kolb | 2019-11-13 | 1 | -30/+30 | |
| | ||||||
* | Remove typed macro parsing API | Aleksey Kladov | 2019-11-09 | 1 | -0/+1 | |
| | | | | | We do type-erasure on every path anyway, so it doesn't make much sense to duplicate this function for every type | |||||
* | Update crates | kjeremy | 2019-11-07 | 1 | -58/+63 | |
| | | | | | | | Removes nodrop and extra arrayvec We have an extra crossbeam-queue and crossbeam-utils left but those should drop once rayon accepts https://github.com/rayon-rs/rayon/pull/704 | |||||
* | Update smallvec to avoid UB and cc while we're at it | kjeremy | 2019-11-05 | 1 | -12/+21 | |
| | ||||||
* | Bump psm, console, indicatif | kjeremy | 2019-11-05 | 1 | -10/+10 | |
| | ||||||
* | Reexport relative_path from ra_db | Aleksey Kladov | 2019-11-03 | 1 | -3/+0 | |
| | ||||||
* | move crate_def_map tests to hir_def | Aleksey Kladov | 2019-11-03 | 1 | -0/+1 | |
| | ||||||
* | Introduce ra_db::fixture fixture module | Aleksey Kladov | 2019-11-03 | 1 | -0/+1 | |
| | | | | The goal here is to share more testing infrastructure between crates. | |||||
* | Upgrade Chalk | Florian Diebold | 2019-11-02 | 1 | -27/+27 | |
| | ||||||
* | updates | kjeremy | 2019-10-31 | 1 | -16/+26 | |
| | ||||||
* | move raw_items to hir_def | Aleksey Kladov | 2019-10-30 | 1 | -0/+7 | |
| | ||||||
* | Move ids to hir_def crate | Aleksey Kladov | 2019-10-30 | 1 | -0/+1 | |
| | ||||||
* | introduce ra_hir_def | Aleksey Kladov | 2019-10-30 | 1 | -0/+12 | |
| | ||||||
* | bump smallvec and unicode-segmentation | kjeremy | 2019-10-29 | 1 | -9/+9 | |
| | ||||||
* | Merge #2114 | bors[bot] | 2019-10-29 | 1 | -2/+6 | |
|\ | | | | | | | | | | | | | | | 2114: Move macro expansion to a separate crate r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | rename hir_def -> hir_expand | Aleksey Kladov | 2019-10-29 | 1 | -2/+2 | |
| | | ||||||
| * | move expansion-related code to a separate crate | Aleksey Kladov | 2019-10-29 | 1 | -0/+4 | |
| | | ||||||
* | | Upgrade Chalk, make use of TypeName::Error variant | Florian Diebold | 2019-10-29 | 1 | -23/+36 | |
|/ | ||||||
* | start ra_hir_def crate | Aleksey Kladov | 2019-10-29 | 1 | -0/+10 | |
| | ||||||
* | Update crates | Jeremy Kolb | 2019-10-28 | 1 | -40/+40 | |
| |