Skip to content
This repository was archived by the owner on Jun 9, 2026. It is now read-only.

Latest commit

 

History

32 提交

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

仓库 files navigation

rust-opensource

rust-opensource is an API Wrapper that allows you to query the Open Source License API with Rust.

Install

The crate is called opensource and you can depend on it via cargo:

[dependencies]
opensource = "0.2.0"

Documentation can be found at OpenSourceOrg.github.io/rust-opensource.

Examples

extern crate opensource;

use opensource::client;

fn main() {
    let license = client::get("BSD-3").unwrap();
    println!("{}", license.name);
}

A better way is to use match:

extern crate opensource;

use opensource::client;

fn main() {
    let license = client::get("this-license-does-not-exist");
    match license {
        Ok(license) => println!("{}", license.name),
        Err(err) => println!("{}", err),
    }
}

关于

Rust API Bindings to the OSI License API

Topics

Resources

Stars

10 stars

关注者

10 watching

复刻s

发布

Used by

贡献者

Languages