mirror of
https://github.com/bspeice/aeron-rs
synced 2024-12-21 21:38:09 -05:00
Initial Cargo project and Aeron source
This commit is contained in:
commit
c6eb7e3519
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
/target
|
||||||
|
**/*.rs.bk
|
||||||
|
Cargo.lock
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "aeron"]
|
||||||
|
path = aeron
|
||||||
|
url = https://github.com/real-logic/aeron
|
9
Cargo.toml
Normal file
9
Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
[package]
|
||||||
|
name = "aeron-driver-sys"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Bradlee Speice <bradlee@speice.io>"]
|
||||||
|
edition = "2018"
|
||||||
|
links = "aeron-driver"
|
||||||
|
build = "build.rs"
|
||||||
|
|
||||||
|
[dependencies]
|
1
aeron
Submodule
1
aeron
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit f3417fd5fb4002d7e3c9c8110f42c6542dee5945
|
7
src/lib.rs
Normal file
7
src/lib.rs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
assert_eq!(2 + 2, 4);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user