You've already forked uutils-args
mirror of
https://github.com/uutils/uutils-args.git
synced 2026-06-10 16:13:08 -07:00
add license headers and LICENSE file for derive
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
Copyright (c) Terts Diepraam
|
||||
Copyright (c) uutils developers
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
../LICENSE
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
use std::ops::RangeInclusive;
|
||||
|
||||
use proc_macro2::TokenStream;
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
use std::ops::RangeInclusive;
|
||||
|
||||
use syn::{
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
use proc_macro2::TokenStream;
|
||||
use quote::quote;
|
||||
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
use std::{
|
||||
io::Read,
|
||||
path::{Path, PathBuf},
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// This file is part of the uutils coreutils package.
|
||||
//
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
use syn::{
|
||||
parse::{Parse, ParseStream},
|
||||
parse_macro_input, Data, DeriveInput, Fields, Token,
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
mod argument;
|
||||
mod attributes;
|
||||
mod flags;
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
use std::{
|
||||
error::Error as StdError,
|
||||
ffi::OsString,
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
//! Argument parsing for the uutils coreutils project
|
||||
//!
|
||||
//! This crate provides the argument parsing for the
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// For the full copyright and license information, please view the LICENSE
|
||||
// file that was distributed with this source code.
|
||||
|
||||
use crate::error::Error;
|
||||
use std::{
|
||||
ffi::{OsStr, OsString},
|
||||
|
||||
Reference in New Issue
Block a user