Camille GILLOT | 81a600b | 2021-01-02 13:42:15 | [diff] [blame] | 1 | [package] |
Camille GILLOT | 81a600b | 2021-01-02 13:42:15 | [diff] [blame] | 2 | name = "rustc_monomorphize" |
| 3 | version = "0.0.0" |
Mark Rousskov | c746be2 | 2021-09-19 16:49:55 | [diff] [blame] | 4 | edition = "2021" |
Camille GILLOT | 81a600b | 2021-01-02 13:42:15 | [diff] [blame] | 5 | |
| 6 | [lib] |
Camille GILLOT | 81a600b | 2021-01-02 13:42:15 | [diff] [blame] | 7 | |
| 8 | [dependencies] |
Joshua Nelson | eb53eea | 2022-12-29 21:08:09 | [diff] [blame^] | 9 | serde = "1" |
| 10 | serde_json = "1" |
Nathan Stocks | 137f20c | 2022-08-18 21:51:47 | [diff] [blame] | 11 | smallvec = { version = "1.8.1", features = [ "union", "may_dangle" ] } |
Camille GILLOT | 81a600b | 2021-01-02 13:42:15 | [diff] [blame] | 12 | tracing = "0.1" |
| 13 | rustc_data_structures = { path = "../rustc_data_structures" } |
Nathan Stocks | 137f20c | 2022-08-18 21:51:47 | [diff] [blame] | 14 | rustc_errors = { path = "../rustc_errors" } |
Camille GILLOT | 81a600b | 2021-01-02 13:42:15 | [diff] [blame] | 15 | rustc_hir = { path = "../rustc_hir" } |
| 16 | rustc_index = { path = "../rustc_index" } |
Nathan Stocks | 137f20c | 2022-08-18 21:51:47 | [diff] [blame] | 17 | rustc_macros = { path = "../rustc_macros" } |
Camille GILLOT | 81a600b | 2021-01-02 13:42:15 | [diff] [blame] | 18 | rustc_middle = { path = "../rustc_middle" } |
| 19 | rustc_session = { path = "../rustc_session" } |
| 20 | rustc_span = { path = "../rustc_span" } |
| 21 | rustc_target = { path = "../rustc_target" } |