forked from nobuyuki83/del-geo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 928 Bytes
/
Cargo.toml
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
[workspace]
members = [
"del-geo-core",
"del-geo-nalgebra",
"del-geo-cpp-headers"]
resolver = "2"
[workspace.package]
version = "0.1.32"
edition = "2021"
authors = ["Nobuyuki Umetani <[email protected]>"]
description = "2D/3D geometry utility codes"
documentation = "https://docs.rs/del_geo"
license = "MIT"
repository = "https://github.com/nobuyuki83/del-geo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
num-traits = "0.2.19"
nalgebra = "0.33.0"
num-complex = "0.4.6"
rand = "0.8.5"
arrayref = "0.3.7"
array-macro = "2.1.8"
itertools = "0.13.0"
ordered-float = "4.2.2"
rand_chacha = "0.3.1"
# internal
del-geo-nalgebra = { path="del-geo-nalgebra"}
del-geo-core = { path="del-geo-core"}
# external my library
# del-msh-core = {path = "../del-msh/del-msh-core"}
del-msh-core = { git = "https://github.com/nobuyuki83/del-msh.git"}