]> git.lizzy.rs Git - rust.git/blob - src/Cargo.toml
Remove deserialize
[rust.git] / src / Cargo.toml
1 [workspace]
2 members = [
3   "bootstrap",
4   "rustc",
5   "libstd",
6   "libtest",
7   "tools/cargotest",
8   "tools/compiletest",
9   "tools/error_index_generator",
10   "tools/linkchecker",
11   "tools/rustbook",
12   "tools/unstable-book-gen",
13   "tools/tidy",
14   "tools/build-manifest",
15   "tools/remote-test-client",
16   "tools/remote-test-server",
17   "tools/rust-installer",
18   "tools/cargo",
19   "tools/rls",
20   # FIXME(https://github.com/rust-lang/cargo/issues/4089): move these to exclude
21   "tools/rls/test_data/borrow_error",
22   "tools/rls/test_data/completion",
23   "tools/rls/test_data/find_all_refs",
24   "tools/rls/test_data/find_all_refs_no_cfg_test",
25   "tools/rls/test_data/goto_def",
26   "tools/rls/test_data/highlight",
27   "tools/rls/test_data/hover",
28   "tools/rls/test_data/rename",
29   "tools/rls/test_data/reformat",
30   "tools/rls/test_data/bin_lib_no_cfg_test",
31   "tools/rls/test_data/multiple_bins",
32   "tools/rls/test_data/bin_lib",
33   "tools/rls/test_data/reformat_with_range",
34 ]
35
36 # Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
37 # MSVC when running the compile-fail test suite when a should-fail test panics.
38 # But hey if this is removed and it gets past the bots, sounds good to me.
39 [profile.release]
40 opt-level = 2
41 [profile.bench]
42 opt-level = 2
43
44 # These options are controlled from our rustc wrapper script, so turn them off
45 # here and have them controlled elsewhere.
46 [profile.dev]
47 debug = false
48 debug-assertions = false
49 [profile.test]
50 debug = false
51 debug-assertions = false
52
53 [replace]
54 "https://github.com/rust-lang/cargo#0.21.0" = { path = "tools/cargo" }