Skip to content

Commit

Permalink
Add new std feature
Browse files Browse the repository at this point in the history
Since we disable all default features, which includes the new`std`
feature otherwise.
  • Loading branch information
edmorley committed Nov 15, 2023
1 parent 44f39e3 commit 1e096e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libcnb-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
include = ["src/**/*", "LICENSE", "README.md"]

[dependencies]
fancy-regex = { version = "0.12.0", default-features = false }
fancy-regex = { version = "0.12.0", default-features = false, features = ["std"] }
libcnb-proc-macros.workspace = true
serde = { version = "1.0.188", features = ["derive"] }
thiserror = "1.0.48"
Expand Down
2 changes: 1 addition & 1 deletion libcnb-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ proc-macro = true

[dependencies]
cargo_metadata = "0.18.0"
fancy-regex = { version = "0.12.0", default-features = false }
fancy-regex = { version = "0.12.0", default-features = false, features = ["std"] }
quote = "1.0.33"
syn = { version = "2.0.37", features = ["full"] }

0 comments on commit 1e096e8

Please sign in to comment.