-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (33 loc) · 961 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
36
37
38
[package]
name = "gdnative-doc"
version = "0.0.6"
description = "Documentation tool for gdnative"
authors = ["Arnaud Golfouse <[email protected]>"]
repository = "https://github.com/arnaudgolfouse/gdnative-doc-rs/"
readme = "README.md"
edition = "2021"
license = "MIT"
[workspace]
members = ["gdnative-doc-cli", "examples/dijkstra-map-gd"]
default-members = [".", "gdnative-doc-cli"]
[dependencies]
cargo_metadata = "0.15.0"
log = { version = "0.4.17", features = ["std"] }
pulldown-cmark = { version = "0.9.2", default-features = false }
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
simplelog = { version = "0.12.0", optional = true }
syn = { version = "1.0.102", default-features = false, features = [
"parsing",
"full",
"visit",
"clone-impls",
] }
thiserror = "1.0.37"
toml = "0.5.9"
[dev-dependencies]
insta = "1.21.0"
gdnative = "0.11.0"
[features]
default = ["simplelog"]
[profile.release]
lto = true