Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wznmickey committed Apr 22, 2024
1 parent 5b8b07f commit 5a3d52c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canvas_syncer"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
8 changes: 3 additions & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
Plan to implement Canvas-Syncer in rust to gain higher reability and extension.

Current Version: 0.1.0
Current Version: 0.2.0

Now support: download files and folders from canvas to local.
Not supported: update files.

Roadmap:
1. use blocking to complete basic functions
2. switch to async
1. use blocking to complete basic functions (finished)
2. switch to async (partly finished)
3. support features(i.e. file filter,detail downloading config)
4. allow uploading

Expand Down
3 changes: 0 additions & 3 deletions src/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ use crate::course::*;
use reqwest::blocking;
use reqwest::blocking::Response;
use reqwest::header;
use reqwest::*;
use reqwest::{self};
use serde_json::Value;
// use std::fs;
use std::io::Write;
use std::path::{Path, PathBuf};
use std::rc::Rc;
Expand Down

0 comments on commit 5a3d52c

Please sign in to comment.