Skip to content

Commit dde555f

Browse files
committed
Add license (BSD-2-Clause)
1 parent d269204 commit dde555f

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

COPYING

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Copyright (c) 2015, Geoffrey Thomas <[email protected]>.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are
6+
met:
7+
8+
1. Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright
12+
notice, this list of conditions and the following disclaimer in the
13+
documentation and/or other materials provided with the distribution.
14+
15+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
16+
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17+
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
18+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
21+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,9 @@
22
name = "redhook"
33
version = "0.0.1"
44
authors = ["Geoffrey Thomas <[email protected]>"]
5+
description = "Dynamic function call interposition / hooking (LD_PRELOAD) for Rust"
6+
repository = "https://github.com/geofft/redhook"
7+
readme = "README.md"
8+
keywords = ["LD_PRELOAD", "interposition"]
9+
license = "BSD-2-Clause"
510
examples = []

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,5 @@ neighborhood in Brooklyn, New York. Portions of the implementation
6262
borrow heavily from concepts in @Kimundi's
6363
[`lazy_static!`](https://github.com/Kimundi/lazy-static.rs) macro.
6464

65+
redhook is free software, available under the terms of the
66+
[2-clause BSD license](COPYING).

0 commit comments

Comments
 (0)