-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (81 loc) · 2.38 KB
/
Copy pathCargo.toml
File metadata and controls
92 lines (81 loc) · 2.38 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
members = ["crates/*", "xtask"]
resolver = "2"
[profile.dev]
debug = 0
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.test]
opt-level = 1
[profile.fuzz]
inherits = "dev"
opt-level = 3
incremental = false
codegen-units = 1
[profile.release]
debug = 0
lto = "thin"
[workspace.package]
version = "0.1.8"
description = "Fennec Programming Language"
authors = ["Gregory Petrosyan <pgregory@pgregory.net>"]
homepage = "https://fennec-lang.org"
repository = "https://github.com/fennec-lang/fennec"
license = "MPL-2.0"
edition = "2021"
[workspace.lints.rust]
unsafe_code = "forbid"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[workspace.lints.clippy]
all = { level = "warn", priority = -3 }
pedantic = { level = "warn", priority = -2 }
unwrap_used = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[workspace.dependencies]
ahash = "0.8.11"
anyhow = "1"
bolero = "0.12"
clap = "4.5"
clap-verbosity-flag = "3.0"
debug-ignore = "1"
env_logger = "0.11"
fastrand = { version = "2", default-features = false }
insta = { version = "1.36.1", default-features = false, features = ["colors"] }
lalrpop = { version = "0.22", default-features = false }
lalrpop-util = { version = "0.22", default-features = false }
line-index = "0.1.1"
log = { version = "0.4", features = ["std"] }
logos = { version = "0.15.0", default-features = false, features = ["std"] }
logos-codegen = "0.15.0"
lsp-server = "0.7.6"
lsp-types = "0.95.1"
parking_lot = "0.12"
proc-macro2 = "1"
proptest = "1.4.0"
proptest-state-machine = "0.3.0"
regex = "1"
semver = "1"
serde = "1"
serde_json = "1"
similar-asserts = "1.5"
slotmap = "1"
tempfile = "3"
text-size = "1.1"
time = { version = "0.3.34", default-features = false }
walkdir = "2"
xflags = "0.3.2"
xshell = "0.2.5"
fennec-common = { path = "crates/fennec-common", version = "0.1.8" }
fennec-core = { path = "crates/fennec-core", version = "0.1.8" }
fennec-module = { path = "crates/fennec-module", version = "0.1.8" }
fennec-parser = { path = "crates/fennec-parser", version = "0.1.8" }
fennec-server = { path = "crates/fennec-server", version = "0.1.8" }
fennec-vfs = { path = "crates/fennec-vfs", version = "0.1.8" }
[workspace.metadata.release]
allow-branch = ["master", "dev"]
shared-version = true
tag-name = "v{{version}}"
tag-message = "fennec v{{version}}"
pre-release-commit-message = "fennec v{{version}}"