Skip to content

Commit 3e21852

Browse files
Reserve crate name
1 parent 72daa11 commit 3e21852

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,12 @@ Cargo.lock
88

99
# These are backup files generated by rustfmt
1010
**/*.rs.bk
11+
12+
13+
#Added by cargo
14+
#
15+
#already existing elements are commented out
16+
17+
/target
18+
#**/*.rs.bk
19+
#Cargo.lock

Cargo.toml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "inheritance"
3+
version = "0.0.0"
4+
authors = ["Daniel Henry-Mantilla <[email protected]>"]
5+
edition = "2018"
6+
7+
documentation = "https://docs.rs/inheritance"
8+
homepage = "https://crates.io/crates/inheritance"
9+
repository = "https://github.com/danielhenrymantilla/inheritance-rs"
10+
11+
description = "Avoiding code reuse in Rust with OOP inheritance"
12+
13+
license = "MIT"
14+
15+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
16+
17+
[dependencies]

src/lib.rs

Whitespace-only changes.

0 commit comments

Comments
 (0)