# Trending Rust Repositories on GitHub

**Use case:** 

Extract a list of trending Rust repositories with over 1000 stars. Retrieve details like stars, topics, and forks in CSV/JSON format.

## Input

```json
{
  "searchQuery": "language:rust stars:>1000",
  "language": "",
  "sort": "stars",
  "order": "desc",
  "maxRepos": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "fullName": {
    "label": "Full Name",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "stars": {
    "label": "Stars",
    "format": "integer"
  },
  "forks": {
    "label": "Forks",
    "format": "integer"
  },
  "openIssues": {
    "label": "Open Issues",
    "format": "integer"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "updatedAt": {
    "label": "Updated At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [GitHub Repository Scraper - Stars, Topics, Trending](https://apify.com/logiover/github-repository-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/github-repository-scraper) to learn more, explore other use cases, and run it yourself.