Skip to content

Commit

Permalink
Fix features list
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjjj authored and davidB committed May 4, 2023
1 parent 4a575f5 commit 8393a55
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Expand Up @@ -36,11 +36,13 @@ To not "import" useless dependencies, use crate's features:

```toml
[features]
default = [ "string", "http", "json", "jsonnet" ]
string = [ "Inflector", "enquote" ]
http = [ "attohttpc" ]
json = [ "lazy_static", "serde", "serde_json", "serde-transcode", "serde_yaml", "toml" ]
jsonnet = [ "jsonnet-rs" ]
default = ["string", "http_attohttpc", "json", "jsonnet"]
string = ["Inflector", "enquote"]
http_attohttpc = ["attohttpc", "http_fct"]
http_reqwest = ["reqwest", "http_fct"]
http_fct = []
json = ["lazy_static", "serde", "serde_json", "serde_yaml", "toml"]
jsonnet = ["jsonnet-rs"]
```

<!-- TOC depthFrom:2 -->
Expand Down

0 comments on commit 8393a55

Please sign in to comment.