Matthias Endler on Nostr: nprofile1q…683zn I wonder if you thought about making it an optional dependency: ...
nprofile1qy2hwumn8ghj7un9d3shjtnddaehgu3wwp6kyqpqzpfn842a6mn3z7rqu5c4y2kaxre4pcs9qt7sttqe7gxzm63t0v4s5683zn (nprofile…83zn)
I wonder if you thought about making it an optional dependency:
```toml
# In your library's Cargo.toml
[dependencies]
drydoc = { version = "0.1", optional = true }
[features]
doc-tools = ["drydoc"] # Enable when building documentation
```
The one downside is that the feature needs to be enabled when building the docs, but it might be fine because docs get generated less often than read.
I wonder if you thought about making it an optional dependency:
```toml
# In your library's Cargo.toml
[dependencies]
drydoc = { version = "0.1", optional = true }
[features]
doc-tools = ["drydoc"] # Enable when building documentation
```
The one downside is that the feature needs to be enabled when building the docs, but it might be fine because docs get generated less often than read.