Skip to content

Commit

Permalink
Avoid copying Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
alexliesenfeld committed Aug 31, 2024
1 parent a208109 commit a518a93
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ syn = { version = "2.0", features = ["full"] }
urlencoding = "2.1.2"

[features]
default = ["cookies", "http2", "record"]
standalone = ["clap", "env_logger", "static-mock", "remote", "http2", "https", "cookies", "color"] # enables standalone mode
default = ["cookies"]
standalone = ["clap", "env_logger", "static-mock", "http2", "cookies", "remote", "remote-https"] # enables standalone mode
color = ["colored"] # enables colorful output in standalone mode
cookies = ["headers"] # enables support for matching cookies
remote = ["hyper-util/client-legacy", "hyper-util/http2"] # allows to connect to remote mock servers
Expand All @@ -75,7 +75,6 @@ https = ["rustls", "rcgen", "tokio-rustls", "rustls-pemfile", "rustls/ring", "tl
http2 = ["hyper/http2", "hyper-util/http2"] # enables httpmocks server support for HTTP2
record = ["static-mock", "proxy"]
experimental = [] # marker feature for experimental features
full = ["default", "standalone", "color", "cookies", "remote", "remote-https", "proxy", "static-mock", "https", "http2", "record", "experimental"]

[[bin]]
name = "httpmock"
Expand Down

0 comments on commit a518a93

Please sign in to comment.