Skip to content
Snippets Groups Projects
Verified Commit 62f3e1fc authored by Kloenk's avatar Kloenk
Browse files

prepare cargo publish

parent ed5fbf54
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,16 @@ name = "byteorder" ...@@ -77,6 +77,16 @@ name = "byteorder"
version = "1.3.2" version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "card10-l0dable"
version = "0.1.0"
dependencies = [
"bindgen 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-abort 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "cc" name = "cc"
version = "1.0.37" version = "1.0.37"
...@@ -160,30 +170,20 @@ dependencies = [ ...@@ -160,30 +170,20 @@ dependencies = [
"quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "l0dable"
version = "0.0.0"
dependencies = [
"bindgen 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-abort 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "l0dable-example" name = "l0dable-example"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"card10-l0dable 0.1.0",
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
"l0dable 0.0.0",
] ]
[[package]] [[package]]
name = "l0dable-rkanoid" name = "l0dable-rkanoid"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"card10-l0dable 0.1.0",
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
"l0dable 0.0.0",
] ]
[[package]] [[package]]
......
...@@ -5,7 +5,7 @@ version = "0.0.0" ...@@ -5,7 +5,7 @@ version = "0.0.0"
authors = ["Astro <astro@spaceboyz.net>"] authors = ["Astro <astro@spaceboyz.net>"]
[dependencies] [dependencies]
l0dable = { path = "../l0dable" } card10-l0dable = { path = "../l0dable" }
[build-dependencies] [build-dependencies]
cc = "1.0" cc = "1.0"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#![no_main] #![no_main]
use core::fmt::Write; use core::fmt::Write;
use l0dable::*; use card10_l0dable::*;
main!(main); main!(main);
fn main() { fn main() {
......
[package] [package]
edition = "2018" edition = "2018"
name = "l0dable" name = "card10-l0dable"
version = "0.0.0" version = "0.1.0"
authors = ["Astro <astro@spaceboyz.net>"] authors = ["Astro <astro@spaceboyz.net>", "Kloenk <me@kloenk.de>"]
license = "MIT/Apache-2.0"
repository = "https://git.card10.badge.events.ccc.de/astro/rust-card10"
homepage = "https://git.card10.badge.events.ccc.de/astro/rust-card10"
keywords = [
"CCC",
"CCCamp2019",
"CCCamp19",
"card10",
"l0dable",
"badge",
]
categories = ["no-std"]
description = """
make l0dables for the Card10 (CCCamp 2019) badge
"""
[dependencies] [dependencies]
r0 = "0.2" r0 = "0.2"
......
...@@ -5,7 +5,7 @@ version = "0.0.0" ...@@ -5,7 +5,7 @@ version = "0.0.0"
authors = ["Astro <astro@spaceboyz.net>"] authors = ["Astro <astro@spaceboyz.net>"]
[dependencies] [dependencies]
l0dable = { path = "../l0dable" } card10-l0dable = { path = "../l0dable" }
[build-dependencies] [build-dependencies]
cc = "1.0" cc = "1.0"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#![no_main] #![no_main]
use core::fmt::Write; use core::fmt::Write;
use l0dable::*; use card10_l0dable::*;
pub const BALL_RADIUS: u16 = 4; pub const BALL_RADIUS: u16 = 4;
pub const PADDLE_SPACE: u16 = 32; pub const PADDLE_SPACE: u16 = 32;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment