luaskills 0.4.0

LuaSkills core runtime library for loading, invoking, and managing Lua skill packages.
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

/// Direct URL download descriptor used by LuaSkills dependency downloads.
/// LuaSkills 依赖下载使用的直接 URL 描述对象。
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UrlDownloadSource {
    pub url: String,
}