-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 1.81 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (55 loc) · 1.81 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
[workspace]
resolver = "2"
members = [
"virtualbow",
"virtualbow_fem",
"virtualbow_num",
"virtualbow_cli",
"virtualbow_ffi",
"virtualbow_gui",
]
[workspace.package]
version = "0.10.0"
edition = "2021"
authors = ["Stefan Pfeifer <s-pfeifer@gmx.net>"]
homepage = "https://www.virtualbow.org"
license = "PolyForm-Noncommercial-1.0.0"
[workspace.lints.rust]
non_snake_case = "allow" # Style
mixed_script_confusables = "allow" # Style
confusable_idents = "allow" # Style
[workspace.lints.clippy]
type_complexity = "allow" # Style
too_many_arguments = "allow" # Style
needless_range_loop = "allow" # Sometimes needed
toplevel_ref_arg = "allow" # Triggers on nalgebra stack! macros, reenable when fixed
identity_op = "allow" # Style (i.e. use of + 0 for clarity)
module_inception = "allow" # Style (maybe reenable later)
manual_range_contains = "allow" # Style (manual version can be more readable)
collapsible_else_if = "allow" # Style (can be more clear sometimes)
collapsible_match = "allow" # Style (can be more clear sometimes)
new_without_default = "allow"
len_without_is_empty = "allow"
missing_safety_doc = "allow" # Enable this later
[workspace.dependencies]
nalgebra = { version = "0.34.2", features = ["serde-serialize", "rand"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.145", features = ["float_roundtrip"] }
rmp-serde = "1.3.0"
iter_num_tools = "0.7.1"
itertools = "0.14.0"
downcast-rs = "2.0.2"
fresnel = "0.1.0"
soa_derive = "0.14.0"
num = "0.4.3"
clap = { version = "4.5.50", features = ["derive"]}
approx = "0.5.1"
plotters = "0.3.7"
assert_matches = "1.5"
assert_cmd = "2.0.17"
spec_math = "0.1.6"
assert2 = "0.3.16"
test_each_file = "0.3.6"
cbindgen = "0.29.2"
indexmap = "2.12.0"
num-traits = "0.2.19"