Skip to content

Commit

Permalink
Add env to debug and production features
Browse files Browse the repository at this point in the history
  • Loading branch information
bvrooman committed Aug 22, 2023
1 parent eadcb55 commit d1c8fa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/fuel-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ url = { version = "2.2", optional = true }
test-case = { workspace = true }

[features]
debug = ["fuel-core/debug"]
debug = ["env", "fuel-core/debug"]
default = ["debug", "metrics", "relayer", "rocksdb"]
env = ["dep:dotenvy"]
metrics = ["fuel-core/metrics"]
Expand All @@ -48,4 +48,4 @@ relayer = ["fuel-core/relayer", "dep:url", "dep:serde_json"]
rocksdb = ["fuel-core/rocksdb"]
rocksdb-production = ["fuel-core/rocksdb-production"]
# features to enable in production, but increase build times
production = ["metrics", "relayer", "rocksdb-production", "p2p"]
production = ["env", "metrics", "relayer", "rocksdb-production", "p2p"]

0 comments on commit d1c8fa3

Please sign in to comment.