Cargo Features

[dependencies]
spider_skills = { version = "0.1.7", default-features = false, features = ["web_challenges", "fetch", "s3"] }
default = web_challenges

The web_challenges feature is set by default whenever spider_skills is added without default-features = false somewhere in the dependency tree.

web_challenges default

Built-in web challenge skills (image grids, tic-tac-toe, word search, etc.)

Affects spider_skills::web_challenges, s3::with_builtin_and_s3

fetch

HTTP fetching of remote skill definitions

Enables reqwest ^0.12

Affects spider_skills::fetch

s3

Load skills from AWS S3

Enables aws-config and aws-sdk-s3

Affects spider_skills::s3