-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (53 loc) · 1.52 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
members = [
"./lib",
"./examples/globe/canvas",
"./examples/globe/rotating_wgpu",
"./examples/globe/rotating_50m",
"./examples/globe/drag_and_zoom",
"./examples/globe/svg",
"./examples/globe/albers_usa_svg",
"./examples/projections",
"./examples/ring",
"./examples/multi_threaded",
"./profile_target/albers_svg",
'./profile_target/simple_svg',
]
resolver = "2"
default-members = ["./lib"]
[workspace.package]
authors = ["martin <[email protected]>"]
categories = ["graphics", "Mathematics"]
edition = "2021"
keywords = ["diagram", "graphics"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/martinfrances107/rust_d3_geo"
version = "3.0.1"
# Version 1.65 is required as this package makes use of "Generic Associated Types".
# Version 1.80 LazyLock is stabilized in 1.80
# ( Side note: LazyLock is used **ONLY** in benchmarking, it is set here to support dev builds.
# The underlying library is 1.65 )
rust-version = "1.80"
[workspace.dependencies]
d3_geo_rs = { path = "../../lib" }
geo = "~0.28"
geo-types = "~0.7"
getrandom = { version = "~0.2", features = ["js"] }
gloo-utils = "~0.2"
js-sys = "~0.3"
serde_json = "~1"
futures = "~0.3"
rand = { version = "~0.8" }
rust_topojson_client = { git = "https://github.com/martinfrances107/rust_topojson_client.git", branch = "main" }
topojson = "~0.5"
wasm-bindgen = "~0.2"
wasm-bindgen-test = "~0.3"
wasm-bindgen-futures = "~0.4"
web-sys = "~0.3"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
[profile.dev]
debug = true