-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
43 lines (39 loc) · 915 Bytes
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
[workspace]
members = [
"crates/floe-core",
"crates/floe-cli",
"crates/floe-doc-check",
"crates/floe-lsp",
"crates/floe-test-helpers",
"crates/floe-wasm",
]
resolver = "3"
[workspace.package]
version = "0.7.0" # x-release-please-version
edition = "2024"
license = "MIT"
repository = "https://github.com/floeorg/floe"
[workspace.dependencies]
anyhow = "1"
ariadne = "0.6"
clap = { version = "4", features = ["derive"] }
notify = "8"
oxc_allocator = "0.126.0"
oxc_ast = "0.126.0"
oxc_parser = "0.126.0"
oxc_span = "0.126.0"
rowan = "0.16"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tempfile = "3.27.0"
tokio = { version = "1.52.0", features = ["full"] }
tower-lsp = "0.20.0"
insta = "1.47.2"
# CI profile: drop opt-level overrides so compile is fast.
[profile.ci]
inherits = "dev"
opt-level = 0
debug = 0
[profile.ci.package."*"]
opt-level = 0
debug = 0