Cargo Features
[dependencies]
spider_skills = { version = "0.1.7", default-features = false, features = ["web_challenges", "fetch", "s3"] }
- default = web_challenges
-
The
web_challengesfeature is set by default wheneverspider_skillsis added withoutsomewhere in the dependency tree.default-features = false - 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…