forked from perspective-dev/perspective
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) Β· 2.94 KB
/
Cargo.toml
File metadata and controls
54 lines (50 loc) Β· 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β ββββββ ββββββ ββββββ β β β β β ββ ββββ β β
# β ββββββ ββββββ ββββββ βββββββββββ β ββββββ βββββββββββββ ββββ ββ β βββββ β
# β ββββββ ββββββ ββββββ βββββ β ββββββ ββββββ βββββββββββββ ββββββ β βββββ β
# β β ββββββ β βββ β ββββββ β ββββββββ ββββββββ β β
# β£ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ«
# β Copyright (c) 2017, the Perspective Authors. β
# β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
# β This file is part of the Perspective library, distributed under the terms β
# β of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). β
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
[workspace]
resolver = "2"
default-members = [
"rust/perspective",
"rust/perspective-client",
"rust/perspective-js",
"rust/perspective-python",
"rust/perspective-server",
"rust/perspective-viewer",
]
members = [
"rust/lint",
"rust/metadata",
"rust/bundle",
"rust/perspective",
"rust/perspective-client",
"rust/perspective-js",
"rust/perspective-python",
"rust/perspective-server",
"rust/perspective-viewer",
"examples/rust-axum",
]
[profile.dev]
panic = "abort"
opt-level = "s"
[profile.release]
panic = "abort"
opt-level = "z"
codegen-units = 1
lto = true
strip = true
[patch.crates-io]
simd-adler32 = { git = "https://github.com/mcountryman/simd-adler32.git", rev = "140cde033e8b9a12d4de840648c65ccd5320bcc5" }
perspective-client = { path = "rust/perspective-client" }
perspective-server = { path = "rust/perspective-server" }
perspective-js = { path = "rust/perspective-js" }
perspective = { path = "rust/perspective" }
perspective-viewer = { path = "rust/perspective-viewer" }
perspective-python = { path = "rust/perspective-python" }