python-objects 0.0.1

rust crate that implements the architecture of the CPython objects. with this crate you can crate a list with any data type from rust
Documentation

# make
rq:
	cargo run --quiet

# make br
br:
	cargo build --release

# make b
b:
	cargo build

# make r
r:
	cargo run

# make rr
rr:
	cargo run --release


# make t
t:
	cargo test -- --show-output

# make test
test:
	cargo test -- --show-output


# make p
p:
	# for publishing to crates.io
	cargo build --release
	cargo run --release
	cargo doc
	cargo test
	cargo publish