Browse Source

Add dependabot

pull/24/head
Neo Sun 3 years ago
parent
commit
65f6f59325
  1. 13
      .github/dependabot.yml
  2. 24
      .github/workflows/main.yml
  3. 2
      Cargo.toml

13
.github/dependabot.yml

@ -0,0 +1,13 @@ @@ -0,0 +1,13 @@
version: 2
enable-beta-ecosystems: true
updates:
- package-ecosystem: "cargo" # See documentation for possible values
directory: "/" # Location of package manifests
target-branch: "main"
schedule:
interval: "daily"
- package-ecosystem: "pub" # See documentation for possible values
directory: "/" # Location of package manifests
target-branch: "main"
schedule:
interval: "daily"

24
.github/workflows/main.yml

@ -0,0 +1,24 @@ @@ -0,0 +1,24 @@
name: Main
on:
pull_request:
branches:
- main
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup | Rust
uses: ATiltedTree/setup-rust@v1
with:
rust-version: stable
- run: cargo test

2
Cargo.toml

@ -46,7 +46,7 @@ image = "0.24" @@ -46,7 +46,7 @@ image = "0.24"
once_cell = "1.9"
rand_chacha = "0.3"
sha2 = "0.10"
sysinfo = "0.23"
sysinfo = "0.26"
serde = { version = "1", features = ["derive"] }
tdn = { version = "0.8", default-features = false, features = ["std"] }
tdn_did = { version = "0.8" }

Loading…
Cancel
Save