Skip to content
Snippets Groups Projects
Commit cbcd4822 authored by Bryan Chen's avatar Bryan Chen
Browse files

remove workspace

parent d1308058
No related branches found
No related tags found
No related merge requests found
...@@ -22,11 +22,3 @@ std = [ ...@@ -22,11 +22,3 @@ std = [
"traits/std", "traits/std",
"utilities/std", "utilities/std",
] ]
[workspace]
members = [
"oracle",
"tokens",
"traits",
"utilities",
]
...@@ -5,7 +5,7 @@ check-tests: githooks ...@@ -5,7 +5,7 @@ check-tests: githooks
cargo check --all --tests cargo check --all --tests
test: githooks test: githooks
cargo test cargo test --all
GITHOOKS_SRC = $(wildcard githooks/*) GITHOOKS_SRC = $(wildcard githooks/*)
GITHOOKS_DEST = $(patsubst githooks/%, .git/hooks/%, $(GITHOOKS_SRC)) GITHOOKS_DEST = $(patsubst githooks/%, .git/hooks/%, $(GITHOOKS_SRC))
......
...@@ -4,10 +4,6 @@ pub fn add(a: u32, b: u32) -> u32 { ...@@ -4,10 +4,6 @@ pub fn add(a: u32, b: u32) -> u32 {
a + b a + b
} }
pub fn test() -> Vec<u32> {
vec![1]
}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use super::*;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment