Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the concrete cli, project manager #98

Merged
merged 2 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
222 changes: 222 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Make sure you have installed the dependencies:
- git
- Rust
- LLVM 17 with MLIR enabled
- libgit2

If building LLVM from source, you'll need additional tools:
- g++, clang++, or MSVC with versions listed on [LLVM's documentation](https://llvm.org/docs/GettingStarted.html#host-c-toolchain-both-compiler-and-standard-library)
Expand Down
2 changes: 1 addition & 1 deletion crates/concrete/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
concrete_driver::main()
Ok(concrete_driver::main()?)
}
3 changes: 3 additions & 0 deletions crates/concrete_ast/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use std::path::PathBuf;

use modules::Module;

pub mod common;
Expand All @@ -12,5 +14,6 @@ pub mod types;

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Program {
pub file_path: Option<PathBuf>,
pub modules: Vec<Module>,
}
Loading
Loading